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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e8f0ff;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    flex-shrink: 0;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.logo-link:hover .logo-image {
    transform: scale(1.05);
}

.logo-link:hover .logo-text {
    color: #e53e3e;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #e53e3e;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e53e3e;
    transition: width 0.3s ease;
}

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

.blog-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #48bb78;
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 1.5rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    background: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

.blog-link img {
    filter: brightness(0) invert(1);
}

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

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #2c3e50;
    transition: all 0.3s ease;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

/* Hero Image */
.hero-image {
    position: relative;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

/* Privileges list in hero (desktop only) */
.hero-image .privileges-list {
    margin-top: 2rem;
}

.hero-image .privileges-title {
    font-size: 1.4rem;
    text-align: left;
}

/* Hero Content */
.hero-content {
    padding: 0 0 2rem 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-description strong {
    color: #1a365d;
    font-weight: 600;
}

/* Benefits Snippets */
.benefits-snippets {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.snippet {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #3182ce;
    transition: transform 0.2s ease;
}

.snippet:hover {
    transform: translateY(-2px);
}

.snippet-icon {
    color: #3182ce;
    margin-right: 1rem;
    flex-shrink: 0;
}

.snippet-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.snippet-content p {
    font-size: 0.95rem;
    color: #4a5568;
}

/* CTA Section */
.hero-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: #3182ce;
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 14px rgba(49, 130, 206, 0.3);
}

.cta-button:hover {
    background: #2c5aa0;
}

.cta-button.primary {
    border-radius: 6px;
}

.cta-icon {
    margin-right: 0.75rem;
}

/* CTA Button text elements */
.cta-text-main, .cta-phone-number {
    display: inline;
}

.cta-phone-number {
    font-weight: 700;
}

.cta-subtitle {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #718096;
}

/* Privileges Section */
.privileges-list {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.privileges-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.privileges {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.privilege-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1rem;
    color: #4a5568;
}

.privilege-item:last-child {
    border-bottom: none;
}

.privilege-icon {
    color: #38a169;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Hide privileges list in hero on mobile */
    .hero-image .privileges-list {
        display: none;
    }

    /* Header Mobile */
    .header-container {
        padding: 0.75rem 1rem;
        flex-direction: row;
        justify-content: space-between;
    }

    .header-container {
        padding: 0.75rem 1rem;
        gap: 1rem;
        justify-content: space-between;
    }

    .logo-link {
        gap: 0.4rem;
        flex: 1;
        min-width: 0;
    }

    .logo-image {
        height: 35px;
        flex-shrink: 0;
    }

    .logo-text {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.2;
    }

    /* Mobile Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        min-width: 180px;
        z-index: 1000;
    }

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

    .nav-menu li {
        margin: 0;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        border-bottom: 1px solid #f8f9fa;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

    .blog-link {
        margin-left: 0.75rem;
        padding: 0.5rem;
        width: 40px;
        height: 40px;
        justify-content: center;
    }

    .blog-link span {
        display: none;
    }

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

    .header-nav {
        position: relative;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .privileges-list {
        padding: 1.5rem;
    }

    .benefits-snippets {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .snippet {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .snippet-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .snippet-content h3 {
        margin-bottom: 0.25rem;
        font-size: 1rem;
    }

    .snippet-content p {
        font-size: 0.9rem;
        margin: 0;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .privileges-list {
        padding: 1rem;
    }

    /* Ultra compact header for small screens */
    .header-container {
        padding: 0.5rem 0.75rem;
        gap: 0.75rem;
    }

    .logo-image {
        height: 30px;
    }

    .logo-text {
        font-size: 0.9rem;
        max-width: 120px;
    }

    /* Fix CTA button text wrap on small screens */
    .cta-button {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
        line-height: 1.2;
        white-space: normal;
        min-height: auto;
    }

    .cta-icon {
        margin-right: 0;
        margin-bottom: 0.2rem;
    }

    .cta-text-main, .cta-phone-number {
        display: block;
        line-height: 1.2;
    }

    .cta-phone-number {
        font-weight: 700;
        font-size: 1rem;
    }

}

/* Floating Phone Button */
.floating-phone-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.5);
    color: white;
    text-decoration: none;
}

.floating-phone-btn svg {
    transition: transform 0.3s ease;
}

.floating-phone-btn:hover svg {
    transform: scale(1.1);
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4), 0 0 0 0 rgba(229, 62, 62, 0.7);
    }
    70% {
        box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4), 0 0 0 10px rgba(229, 62, 62, 0);
    }
    100% {
        box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4), 0 0 0 0 rgba(229, 62, 62, 0);
    }
}

/* Show only on mobile devices */
@media (max-width: 768px) {
    .floating-phone-btn {
        display: flex;
    }
}

@media (max-width: 480px) {
    .floating-phone-btn {
        width: 56px;
        height: 56px;
        right: 15px;
    }

    .floating-phone-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* Ensure floating button doesn't overlap with scroll-to-top */
@media (min-width: 481px) and (max-width: 768px) {
    .floating-phone-btn {
        bottom: 25px;
        right: 20px;
    }
}

/* Performance optimizations */
.hero-image img {
    will-change: transform;
}

.snippet,
.cta-button {
    will-change: transform;
}

/* Focus states для доступности */
.cta-button:focus {
    outline: 2px solid #3182ce;
    outline-offset: 2px;
}

.snippet:focus-within {
    outline: 2px solid #3182ce;
    outline-offset: 2px;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

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

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

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

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8f0ff;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
}

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

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.services-highlight {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #dc3545;
    margin-bottom: 3rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.highlight-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 1rem;
}

.highlight-text {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.services-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}

.cta-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: #fff;
    text-decoration: none;
}

.cta-button svg {
    width: 18px;
    height: 18px;
}

/* Emergency Section */
.emergency-section {
    padding: 5rem 0;
    background: #fff;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.emergency-content {
    display: grid;
    /* grid-template-columns: 1.2fr 1fr;
    gap: 4rem; */
    align-items: start;
}

.emergency-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.emergency-description strong {
    color: #1a365d;
    font-weight: 600;
}

/* Emergency Features */
.emergency-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e53e3e;
}

.feature-icon {
    color: #e53e3e;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: #4a5568;
}

/* Emergency Process */
.process-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.process-steps {
    display: grid;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #3182ce;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.95rem;
    color: #4a5568 !important;
}

.emergency-section .step-content h4 {
    color: #1a365d !important;
}

.emergency-section .step-content p {
    color: #4a5568 !important;
}

.emergency-section .feature-content h3 {
    color: #1a365d !important;
}

.emergency-section .feature-content p {
    color: #4a5568 !important;
}

.emergency-section .emergency-description {
    color: #4a5568 !important;
}

.emergency-section .section-title {
    color: #1a365d !important;
}

.emergency-section h2,
.emergency-section h3,
.emergency-section h4 {
    color: #1a365d !important;
}

.emergency-section p {
    color: #4a5568 !important;
}

/* Emergency Image */
.emergency-image {
    position: relative;
}

.emergency-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Emergency CTA в emergency section */
.emergency-section .emergency-cta {
    position: static;
    margin-top: 1.5rem;
}

/* Emergency CTA в других секциях */
.contact-form .emergency-cta {
    background: rgb(255 255 255);
    border: 2px solid rgba(248, 113, 113, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: static;
    margin-top: 2rem;
}

.cta-urgent {
    background: rgba(229, 62, 62, 0.95);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-urgent h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.emergency-button {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #e53e3e;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.emergency-button:hover {
    background: #f7fafc;
    transform: translateY(-1px);
}

.button-icon {
    margin-right: 0.5rem;
}

.cta-note {
    color: white;
    font-size: 0.8rem;
    margin: 0;
}

/* Emergency CTA специфичные стили */
.emergency-cta .cta-urgent h4 {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.emergency-cta .emergency-button {
    background: white !important;
    color: #e53e3e !important;
    text-shadow: none !important;
}

.emergency-cta .emergency-button:hover {
    background: #f7fafc !important;
    color: #e53e3e !important;
    text-decoration: none !important;
}

.emergency-cta .cta-note {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive для Services Section */
@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }

    .services-container {
        padding: 0 1rem;
    }

    .services-intro {
        margin-bottom: 3rem;
    }

    .services-description {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .service-icon svg {
        width: 20px;
        height: 20px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.95rem;
    }

    .service-features li {
        font-size: 0.9rem;
    }

    .services-highlight {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .highlight-title {
        font-size: 1.1rem;
    }

    .highlight-text {
        font-size: 0.95rem;
    }

    .services-cta {
        padding: 2rem 1.5rem;
    }

    .cta-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .cta-button svg {
        width: 16px;
        height: 16px;
    }
}

/* Mobile Responsive для Emergency Section */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .emergency-section {
        padding: 3rem 0;
    }

    .emergency-container {
        padding: 0 1rem;
    }

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

    .emergency-description {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 2rem;
    }

    .emergency-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .feature-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .feature-icon {
        margin-right: 0 !important;
        margin-bottom: 0.5rem;
    }

    .feature-content h3 {
        font-size: 1rem !important;
        margin-bottom: 0.25rem !important;
    }

    .feature-content p {
        font-size: 0.9rem !important;
        margin: 0 !important;
    }

    .emergency-process {
        margin-top: 2rem;
    }

    .process-title {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
        text-align: center;
    }

    .process-steps {
        gap: 1rem;
    }

    .process-step {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .step-number {
        margin-right: 0 !important;
        margin-bottom: 0.5rem;
    }

    .emergency-section .emergency-cta,
    .contact-form .emergency-cta {
        position: static !important;
        margin-top: 1.5rem;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem;
    }

    .emergency-description {
        font-size: 1rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .cta-urgent {
        padding: 1rem;
    }
}

/* Repair Section */
.repair-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.repair-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.repair-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.repair-description strong {
    color: #1a365d;
    font-weight: 600;
}

/* Repair Problems */
.problems-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 2rem;
}

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

.problem-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #ed8936;
}

.problem-icon {
    color: #ed8936;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.problem-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.problem-content p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.4;
}

/* Repair Advantages */
.advantages-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.advantages-list {
    display: grid;
    gap: 1rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #4a5568;
}

.advantage-icon {
    color: #38a169;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Repair CTA Wrapper */
.repair-cta-wrapper {
    display: grid;
    gap: 2rem;
}

.repair-cta-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cta-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.cta-card-subtitle {
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.price-info {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 6px;
}

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

.price-label {
    color: #4a5568;
    font-size: 0.95rem;
}

.price-value {
    font-weight: 600;
    color: #1a365d;
    font-size: 1rem;
}

.repair-cta-button {
    display: inline-flex;
    align-items: center;
    background: #ed8936;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.repair-cta-button:hover {
    background: #dd6b20;
    transform: translateY(-1px);
}

.cta-button-icon {
    margin-right: 0.75rem;
}

/* Repair Guarantee */
.repair-guarantee {
    display: flex;
    align-items: center;
    background: #e6fffa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #38a169;
}

.guarantee-icon {
    color: #38a169;
    margin-right: 1rem;
    flex-shrink: 0;
}

.guarantee-text h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.guarantee-text p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
}

/* Mobile Responsive для Repair Section */
@media (max-width: 768px) {
    .repair-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .problem-item {
        padding: 1rem;
    }

    .repair-cta-card {
        padding: 1.5rem;
    }

    .repair-guarantee {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .problems-title,
    .advantages-title {
        font-size: 1.2rem;
    }

    .repair-description {
        font-size: 1rem;
    }

    .problem-item {
        flex-direction: column;
        text-align: center;
    }

    .problem-icon {
        margin: 0 0 0.75rem 0;
    }

    .repair-guarantee {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-icon {
        margin: 0 0 0.75rem 0;
    }
}

/* Replacement Section */
.replacement-section {
    padding: 5rem 0;
    background: #fff;
}

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

.replacement-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
}

.replacement-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.replacement-description strong {
    color: #1a365d;
    font-weight: 600;
}

/* Replacement Types */
.types-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 2rem;
}

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

.type-item {
    display: flex;
    align-items: flex-start;
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4299e1;
}

.type-icon {
    color: #4299e1;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.type-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.type-content p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.4;
}

/* Replacement Benefits */
.benefits-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #4a5568;
}

.benefit-icon {
    color: #4299e1;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Replacement CTA Section */
.replacement-cta-section {
    display: grid;
    gap: 2rem;
}

.replacement-pricing {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.pricing-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #fff;
    border-radius: 6px;
}

.price-row.highlight {
    background: #e6fffa;
    border: 1px solid #38a169;
}

.service-name {
    font-weight: 500;
    color: #2d3748;
}

.price-range {
    font-weight: 600;
    color: #1a365d;
}

.pricing-note {
    text-align: center;
    margin-top: 1rem;
}

.pricing-note p {
    font-size: 0.85rem;
    color: #718096;
    margin: 0;
}

/* Replacement Steps */
.replacement-steps {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.steps-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-list {
    display: grid;
    gap: 1rem;
}

.step-item {
    display: flex;
    align-items: center;
}

.step-num {
    width: 32px;
    height: 32px;
    background: #4299e1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-text h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.step-text p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
}

/* Replacement CTA */
.replacement-cta {
    text-align: center;
}

.replacement-button {
    display: inline-flex;
    align-items: center;
    background: #4299e1;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.replacement-button:hover {
    background: #3182ce;
    transform: translateY(-1px);
}

.cta-subtitle {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsive для Replacement Section */
@media (max-width: 768px) {
    .replacement-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .type-item {
        padding: 1rem;
    }

    .replacement-pricing,
    .replacement-steps {
        padding: 1.5rem;
    }

    .step-item {
        align-items: flex-start;
    }

    .step-num {
        margin-top: 0.25rem;
    }
}

@media (max-width: 480px) {
    .types-title,
    .benefits-title {
        font-size: 1.2rem;
    }

    .replacement-description {
        font-size: 1rem;
    }

    .type-item {
        flex-direction: column;
        text-align: center;
    }

    .type-icon {
        margin: 0 0 0.75rem 0;
    }

    .price-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-num {
        margin: 0 0 0.75rem 0;
    }
}

/* Security Section */
.security-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.security-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: start;
}

.security-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.security-description strong {
    color: #1a365d;
    font-weight: 600;
}

/* Security Levels */
.levels-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 2rem;
}

.levels-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.level-item {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid;
    position: relative;
}

.level-item.basic {
    border-top-color: #48bb78;
}

.level-item.standard {
    border-top-color: #4299e1;
}

.level-item.premium {
    border-top-color: #9f7aea;
}

.level-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.level-icon {
    margin-right: 1rem;
}

.level-item.basic .level-icon {
    color: #48bb78;
}

.level-item.standard .level-icon {
    color: #4299e1;
}

.level-item.premium .level-icon {
    color: #9f7aea;
}

.level-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin: 0;
}

.level-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.level-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.level-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 600;
}

.level-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    text-align: right;
}

/* Security Benefits */
.benefits-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #4a5568;
}

.benefit-icon {
    color: #48bb78;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Security Consultation */
.security-consultation {
    display: grid;
    gap: 2rem;
}

.consultation-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.consultation-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
    text-align: center;
}

.consultation-subtitle {
    color: #4a5568;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.consultation-process {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: #e6fffa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-icon svg {
    color: #38a169;
}

.step-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
}

.consultation-cta {
    text-align: center;
}

.security-button {
    display: inline-flex;
    align-items: center;
    background: #48bb78;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.security-button:hover {
    background: #38a169;
    transform: translateY(-1px);
}

.cta-note {
    color: #4a5568;
    font-size: 0.85rem;
    margin: 0;
}

/* Security Guarantee */
.security-guarantee {
    display: flex;
    align-items: center;
    background: #f0fff4;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #48bb78;
}

.guarantee-badge {
    margin-right: 1rem;
    flex-shrink: 0;
}

.guarantee-icon {
    color: #48bb78;
}

.guarantee-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.guarantee-content p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0.25rem 0;
}

.guarantee-note {
    font-size: 0.8rem !important;
    color: #48bb78 !important;
    font-weight: 500;
}

/* Mobile Responsive для Security Section */
@media (max-width: 768px) {
    .security-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .levels-grid {
        gap: 1rem;
    }

    .level-item {
        padding: 1.5rem;
    }

    .consultation-card {
        padding: 1.5rem;
    }

    .process-step {
        align-items: center;
    }

    .security-guarantee {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .levels-title,
    .benefits-title {
        font-size: 1.2rem;
    }

    .security-description {
        font-size: 1rem;
    }

    .level-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .level-icon {
        margin: 0 0 0.75rem 0;
    }

    .level-price {
        text-align: center;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-icon {
        margin: 0 0 0.75rem 0;
    }

    .security-guarantee {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-badge {
        margin: 0 0 0.75rem 0;
    }
}

/* Emergency Service 24/7 Section */
.emergency-service-section {
    padding: 5rem 0;
    background: #fff;
}

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

.emergency-service-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.service-description strong {
    color: #1a365d;
    font-weight: 600;
}

/* Coverage Areas */
.coverage-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.areas-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 3rem;
}

.area-item {
    display: flex;
    align-items: center;
    background: #f7fafc;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #38a169;
}

.area-icon {
    color: #38a169;
    margin-right: 1rem;
    flex-shrink: 0;
}

.area-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.area-content p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
}

/* Service Stats */
.stats-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #e53e3e;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
}

.service-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
}

.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.star {
    font-size: 1.2rem;
}

.rating-text {
    margin-left: 0.5rem;
    font-weight: 600;
    color: #1a365d;
}

.testimonials-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-content p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

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

.testimonial-author strong {
    color: #1a365d;
    font-size: 0.95rem;
}

.testimonial-author span {
    color: #718096;
    font-size: 0.85rem;
}

/* Emergency Contact */
.emergency-contact {
    background: #e53e3e;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.contact-urgency h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.emergency-call-button {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #e53e3e;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.emergency-call-button:hover {
    background: #f7fafc;
    transform: translateY(-1px);
}

.call-icon {
    margin-right: 0.75rem;
}

.contact-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.contact-feature svg {
    margin-right: 0.5rem;
    color: white;
}

/* Mobile Responsive для Emergency Service Section */
@media (max-width: 768px) {
    .emergency-service-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .stat-item {
        padding: 1rem;
    }

    .testimonials-section {
        padding: 1.5rem;
    }

    .emergency-contact {
        padding: 1.5rem;
    }

    .contact-features {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .coverage-title,
    .stats-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 1rem;
    }

    .area-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .area-icon {
        margin: 0 0 0.75rem 0;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .testimonial-item {
        padding: 1rem;
    }

    .emergency-call-button {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
}

/* About Company Section */
.about-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.about-description strong {
    color: #1a365d;
    font-weight: 600;
}

/* Company Achievements */
.achievements-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

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

.achievement-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #4299e1;
}

.achievement-icon {
    color: #4299e1;
    margin-right: 1rem;
    flex-shrink: 0;
}

.achievement-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.achievement-content p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
}

/* Company Values */
.values-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.values-list {
    display: grid;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.value-number {
    width: 40px;
    height: 40px;
    background: #4299e1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.value-content p {
    font-size: 0.95rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

/* Company Stats */
.company-stats {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item-large {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background: #f7fafc;
}

.stat-icon {
    margin: 0 auto 1rem auto;
    color: #4299e1;
}

.stat-number-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label-large {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
}

/* Mobile Responsive для About Section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .achievement-item {
        padding: 1rem;
    }

    .value-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .value-number {
        margin: 0 0 1rem 0;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-item-large {
        padding: 1.5rem;
    }

    .company-stats {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .achievements-title,
    .values-title {
        font-size: 1.2rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .achievement-item {
        flex-direction: column;
        text-align: center;
    }

    .achievement-icon {
        margin: 0 0 0.75rem 0;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number-large {
        font-size: 2rem;
    }

    .stat-item-large {
        padding: 1rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: #fff;
}

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

.pricing-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-description strong {
    color: #1a365d;
    font-weight: 600;
}

/* Pricing Tables */
.pricing-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-table {
    background: #f7fafc;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.table-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.price-list {
    display: grid;
    gap: 0.75rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
}

.price {
    font-size: 0.95rem;
    color: #1a365d;
    font-weight: 600;
}

/* Pricing Info */
.pricing-info {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.info-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.factors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.factor-item {
    display: flex;
    align-items: center;
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ed8936;
}

.factor-icon {
    color: #ed8936;
    margin-right: 1rem;
    flex-shrink: 0;
}

.factor-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.factor-content p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
}

/* Payment Section */
.payment-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.payment-methods {
    display: grid;
    gap: 1rem;
}

.payment-method {
    display: flex;
    align-items: center;
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #38a169;
}

.payment-icon {
    color: #38a169;
    margin-right: 1rem;
    flex-shrink: 0;
}

.payment-method span {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
}

/* Pricing Guarantee */
.pricing-guarantee {
    text-align: center;
    margin-bottom: 2rem;
}

.guarantee-box {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.3);
}

.guarantee-box * {
    color: white !important;
}

.guarantee-icon {
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.guarantee-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.guarantee-text p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

/* Pricing CTA Button */
.pricing-cta {
    text-align: center;
    margin-top: 2rem;
}

.pricing-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    text-decoration: none;
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.5);
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
}

.pricing-button .button-icon {
    margin-right: 1rem;
    flex-shrink: 0;
}

.pricing-button .button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pricing-button .button-text strong {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.pricing-button .button-text small {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Výběr správného zámku Section Styles */
.lock-selection {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.selection-criteria {
    margin: 3rem 0;
}

.criteria-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    color: #2d3748;
    font-weight: 600;
}

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

.criterion-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.criterion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.15);
    border-color: #48bb78;
}

.criterion-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.criterion-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.criterion-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.criterion-content p {
    color: #4a5568;
    line-height: 1.6;
}

.lock-types-comparison {
    margin: 4rem 0;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #2d3748;
    font-weight: 600;
}

.comparison-table {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 2fr;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.table-row {
    display: contents;
}

.table-row.header .cell {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    font-weight: 600;
    text-align: center;
}

.cell {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cell:last-child {
    border-right: none;
}

.table-row:not(.header) .cell:first-child {
    justify-content: flex-start;
    font-weight: 500;
    background: #f7fafc;
}

.table-row:nth-child(even):not(.header) .cell {
    background: #f8f9fa;
}

.expert-recommendation {
    margin: 4rem 0;
}

.recommendation-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    color: #2d3748;
    font-weight: 600;
}

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

.location-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #48bb78;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.location-item h4 {
    color: #48bb78;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.location-item p {
    color: #4a5568;
    line-height: 1.6;
}

.consultation-cta {
    margin-top: 4rem;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 8px 30px rgba(72, 187, 120, 0.3);
}

.consultation-cta h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
}

.consultation-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.consultation-cta .btn {
    background: white;
    color: #38a169;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.consultation-cta .btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* Mobile Responsive для Lock Selection */
@media (max-width: 768px) {
    .criteria-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-table {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .table-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
    }

    .table-row.header {
        display: none;
    }

    .cell {
        padding: 1rem 0.75rem;
        border: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .cell:before {
        content: attr(data-label);
        font-weight: 600;
        color: #48bb78;
        display: block;
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
    }

    .location-recommendations {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .location-item {
        padding: 1.5rem;
    }

    .consultation-cta {
        padding: 2rem 1.5rem;
    }

    .consultation-cta h4 {
        font-size: 1.5rem;
    }
}

/* Testimonials Section Styles */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.testimonials-stats {
    margin: 3rem 0;
}

.stats-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    color: #2d3748;
    font-weight: 600;
}

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

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #f6ad55;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(246, 173, 85, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d69e2e;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.stat-source {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

.reviews-grid {
    margin: 4rem 0;
}

.reviews-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    color: #2d3748;
    font-weight: 600;
}

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

.reviews-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #48bb78;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.reviews-all-btn:hover {
    background: #38a169;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
    gap: 1.2rem;
}

.reviews-all-btn img {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.reviews-all-btn:hover img {
    transform: translateX(4px);
}

.review-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #f6ad55;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.review-header {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f6ad55 0%, #d69e2e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.reviewer-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 0.25rem 0;
}

.reviewer-location {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.8rem;
    color: #a0aec0;
}

.rating {
    font-size: 1.2rem;
}

.review-content {
    padding: 2rem;
}

.review-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-service {
    background: #f7fafc;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 4px solid #f6ad55;
    color: #2d3748;
    font-size: 0.9rem;
    font-weight: 500;
}

.review-platforms {
    margin: 4rem 0;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.platforms-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #2d3748;
    font-weight: 600;
}

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

.platform-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.platform-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.platform-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f6ad55 0%, #d69e2e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.platform-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.platform-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.platform-info p {
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.platform-name {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

.review-cta {
    margin-top: 4rem;
    background: linear-gradient(135deg, #f6ad55 0%, #d69e2e 100%);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 8px 30px rgba(246, 173, 85, 0.3);
}

.review-cta h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.review-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.review-cta .btn {
    background: white;
    color: #d69e2e;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.review-cta .btn svg {
    width: 20px;
    height: 20px;
}

.review-cta .btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-guarantee {
    margin-top: 2rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

/* FAQ Section Styles */
.faq {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-categories {
    margin: 3rem 0;
}

.categories-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.8rem;
    color: #2d3748;
    font-weight: 600;
}

.category-section {
    margin-bottom: 3rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.faq-grid {
    padding: 2rem;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f7fafc;
}

.faq-question h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    color: white;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.5rem 1rem 0.5rem 1rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding: 1.5rem 1rem 1rem 1rem;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.faq-contact {
    margin-top: 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.faq-contact h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
}

.faq-contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.contact-buttons {
    margin-bottom: 2rem;
}

.faq-contact .btn {
    background: white;
    color: #667eea;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-contact .btn svg {
    width: 20px;
    height: 20px;
}

.faq-contact .btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

/* Contact Form Section Styles */
.contact-form {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-form .section-title {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-form .intro-text {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form .intro-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.form-section {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-title {
    color: #2d3748;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #2d3748;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-icon {
    position: absolute;
    right: 1rem;
    top: 2.2rem;
    width: 20px;
    height: 20px;
    color: #a0aec0;
    pointer-events: none;
}

.form-icon svg {
    width: 100%;
    height: 100%;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
}

.form-actions {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.form-actions .btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.form-actions .btn svg {
    width: 20px;
    height: 20px;
}

.form-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.form-note {
    font-size: 0.9rem;
    color: #718096;
    text-align: center;
}

.contact-info {
    color: white;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.method-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.method-number,
.method-time,
.method-area {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f6ad55;
    margin-bottom: 0.25rem;
}

.method-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Emergency CTA в contact section уже определен выше */

.emergency-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fed7d7;
}

.emergency-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.emergency-cta {
    background: rgba(229, 62, 62, 0.1);
    border: 2px solid rgba(229, 62, 62, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.emergency-cta .emergency-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a365d;
}

.emergency-cta .emergency-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.btn-emergency {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px rgba(245, 101, 101, 0.4);
}

.btn-emergency svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-emergency span {
    white-space: nowrap;
}

.btn-emergency:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 101, 101, 0.6);
    color: white;
    text-decoration: none;
}

.emergency-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #4a5568;
}

@media (max-width: 768px) {
    .emergency-cta {
        padding: 1.25rem;
    }

    .btn-emergency {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .btn-emergency svg {
        width: 16px;
        height: 16px;
    }
}

/* Mobile Responsive для Contact Form */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem 2.5rem 1rem 1rem;
    }

    .form-icon {
        right: 0.75rem;
    }

    .contact-methods {
        gap: 1.5rem;
    }

    .contact-method {
        padding: 1.25rem;
    }

    .method-icon {
        width: 40px;
        height: 40px;
    }

    .method-icon svg {
        width: 20px;
        height: 20px;
    }

    .emergency-cta {
        padding: 1.5rem;
    }
}

/* Mobile Responsive для FAQ */
@media (max-width: 768px) {
    .category-title {
        padding: 1.25rem 1.5rem;
        font-size: 1.2rem;
    }

    .faq-grid {
        padding: 1.5rem;
    }

    .faq-item {
        padding: 1.25rem 0;
    }

    .faq-question {
        padding: 0.75rem;
    }

    .faq-question h5 {
        font-size: 1rem;
        padding-right: 0.75rem;
    }

    .faq-icon {
        width: 25px;
        height: 25px;
    }

    .faq-icon svg {
        width: 14px;
        height: 14px;
    }

    .faq-answer {
        padding: 1rem 0.75rem 0.5rem 0.75rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem 0.75rem 1rem 0.75rem;
    }

    .faq-contact {
        padding: 2rem 1.5rem;
    }

    .faq-contact h4 {
        font-size: 1.5rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f6ad55;
}

.footer-logo h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.company-slogan {
    color: #f6ad55;
    font-style: italic;
    margin-bottom: 1rem;
}

.company-description {
    margin-bottom: 2rem;
}

.company-description p {
    color: #cbd5e0;
    line-height: 1.6;
    font-size: 0.9rem;
}

.company-certifications {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.cert-item svg {
    width: 20px;
    height: 20px;
    color: #48bb78;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f6ad55;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: #f6ad55;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-text strong {
    color: white;
    font-size: 0.9rem;
}

.contact-text span,
.contact-text a {
    color: #cbd5e0;
    font-size: 0.9rem;
}

.contact-text a:hover {
    color: #f6ad55;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
}

.footer-legal {
    margin-bottom: 2rem;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.legal-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #f6ad55;
}

.separator {
    color: #718096;
    font-size: 0.8rem;
}

.business-info p {
    color: #a0aec0;
    font-size: 0.8rem;
    margin: 0.25rem 0;
    line-height: 1.4;
}

.business-info p:first-child {
    color: #e2e8f0;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.business-info p:first-child strong {
    color: #f7fafc;
}

.business-info-link {
    color: #48bb78;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.business-info-link:hover {
    color: #68d391;
    text-decoration: underline;
}

.footer-guarantees {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
}

.guarantee-item svg {
    width: 18px;
    height: 18px;
    color: #48bb78;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-text p {
    color: #a0aec0;
    font-size: 0.8rem;
    margin: 0.25rem 0;
}

.disclaimer {
    font-style: italic;
}

.scroll-to-top {
    display: flex;
    align-items: center;
}

#scrollToTop {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f6ad55 0%, #d69e2e 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
    align-items: center;
    justify-content: center;
}

#scrollToTop.show {
    display: flex;
}

#scrollToTop:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(246, 173, 85, 0.4);
}

#scrollToTop svg {
    width: 20px;
    height: 20px;
}

/* Mobile Responsive для Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .company-certifications {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .legal-links {
        justify-content: center;
        text-align: center;
    }

    .footer-guarantees {
        gap: 1rem;
        justify-content: space-between;
    }

    .guarantee-item {
        font-size: 0.8rem;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Mobile Responsive для Testimonials */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .review-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reviews-all-btn {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
    }

    .review-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .reviewer-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .platform-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .platform-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .review-cta {
        padding: 2rem 1.5rem;
    }

    .review-cta h4 {
        font-size: 1.5rem;
    }
}

/* Mobile Responsive для Pricing Section */
@media (max-width: 768px) {
    .pricing-button {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1.5rem;
    }

    .pricing-button .button-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .pricing-button .button-text {
        align-items: center;
    }

    .pricing-button .button-text strong {
        font-size: 1rem;
    }

    .pricing-tables {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===== CONTACT & COVERAGE SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

/* Coverage Info */
.coverage-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.coverage-item {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #48bb78;
}

.coverage-icon {
    color: #48bb78;
    margin-right: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.coverage-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.coverage-content p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #38a169;
    margin-bottom: 0.5rem;
}

.coverage-note {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

/* Districts List */
.districts-list {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.districts-list h3 {
    font-size: 1.4rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.district-column h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #48bb78;
}

.district-column ul {
    list-style: none;
    padding: 0;
}

.district-column li {
    padding: 0.5rem 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.district-column li:before {
    content: "✓";
    color: #48bb78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Info */
.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header h3 {
    font-size: 1.5rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.contact-header p {
    color: #4a5568;
    font-size: 1rem;
}

.contact-methods {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.contact-method.primary {
    border-left: 4px solid #48bb78;
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(72, 187, 120, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #48bb78;
    margin-right: 1rem;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
}

.method-content h4 {
    font-size: 1.1rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.phone-number, .whatsapp-link, .email-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #48bb78;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.phone-number:hover, .whatsapp-link:hover, .email-link:hover {
    color: #38a169;
}

.method-content p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

/* Response Guarantee */
.response-guarantee {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(66,153,225,0.3);
}

.guarantee-icon {
    color: #ffd700;
    margin-right: 1rem;
    flex-shrink: 0;
}

.guarantee-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.guarantee-content p {
    font-size: 0.95rem;
    margin: 0;
    color: white;
    opacity: 0.95;
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-features {
        justify-content: center;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    /* Emergency Section */
    .emergency-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .step-item {
        padding: 1rem;
    }

    /* Repair Section */
    .repair-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    /* Replacement Section */
    .replacement-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .replacement-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Security Section */
    .security-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* Service Section */
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    /* Pricing Section */
    .pricing-tables {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-table {
        padding: 1.5rem;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .pricing-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .guarantee-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .pricing-button {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .pricing-button .button-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .pricing-button .button-text {
        align-items: center;
    }

    .pricing-button .button-text strong {
        font-size: 1rem;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .coverage-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .coverage-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .districts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .districts-list {
        padding: 1.5rem;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .method-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .response-guarantee {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .guarantee-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    /* General Typography Adjustments */
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    h3 {
        font-size: 1.3rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    /* Spacing adjustments */
    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    /* Image adjustments */
    .hero-image img,
    .emergency-image img,
    .service-image img,
    .about-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}

/* ===== SMALL MOBILE DEVICES ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

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

    .feature-item {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .step-item, .problem-item, .option-card,
    .security-item, .service-feature, .value-item {
        padding: 1rem;
    }

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

    .pricing-button .button-text strong {
        font-size: 0.9rem;
    }

    .pricing-button .button-text small {
        font-size: 0.75rem;
    }
}

/* ===== PREVENT OVERFLOW AND ENSURE RESPONSIVENESS ===== */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

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

/* Ensure all grid and flex items don't overflow */
.hero-content, .emergency-content, .repair-content,
.replacement-content, .security-content, .service-content,
.about-content, .contact-content, .pricing-tables,
.pricing-info, .steps-grid, .problems-grid, .repair-grid,
.replacement-options, .security-grid, .service-features,
.stats-grid, .values-grid, .coverage-grid, .districts-grid {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive text - prevent long words from breaking layout */
p, h1, h2, h3, h4, h5, h6, span, div {
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
}

/* Prevent horizontal scrolling on all elements */
section, div, article, aside, header, footer, main {
    max-width: 100%;
    overflow-wrap: break-word;
}

/* Ensure buttons and links are touch-friendly on mobile */
@media (max-width: 768px) {
    a, button, .cta-button, .pricing-button, .emergency-button {
        /* min-height: 44px; */
        min-width: 44px;
        display: inline-block;
        touch-action: manipulation;
    }

    /* Fix container padding on mobile */
    .container {
        padding: 0 1rem;
    }

    /* Ensure no element exceeds viewport width */
    * {
        max-width: 100%;
    }
}

/* ===== PROBLEMS SECTION ===== */
.problems-section {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    padding: 4rem 0;
}

.problems-content {
    margin-top: 3rem;
}

.problems-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .problems-list {
        grid-template-columns: 1fr;
    }
}

.problem-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    border-left: 5px solid #e53e3e;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.problem-card:nth-child(2) { border-left-color: #fd7f28; }
.problem-card:nth-child(3) { border-left-color: #d69e2e; }
.problem-card:nth-child(4) { border-left-color: #38a169; }
.problem-card:nth-child(5) { border-left-color: #3182ce; }

.problem-icon {
    color: #e53e3e;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.problem-card:nth-child(2) .problem-icon { color: #fd7f28; }
.problem-card:nth-child(3) .problem-icon { color: #d69e2e; }
.problem-card:nth-child(4) .problem-icon { color: #38a169; }
.problem-card:nth-child(5) .problem-icon { color: #3182ce; }

.problem-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
}

.problem-details p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.problem-details ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.problem-details li {
    padding: 0.5rem 0;
    color: #2d3748;
    position: relative;
    padding-left: 1.5rem;
}

.problem-details li:before {
    content: "→";
    color: #e53e3e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.urgency-level {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.urgency-level.high {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    color: #c53030;
}

.urgency-level.medium {
    background: linear-gradient(135deg, #feebc8 0%, #fbd38d 100%);
    color: #c05621;
}

.urgency-level.low {
    background: linear-gradient(135deg, #c6f6d5 0%, #9ae6b4 100%);
    color: #276749;
}

.urgency-text {
    font-size: 1rem;
}

.time-estimate {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Prevention Tips */
.prevention-tips {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.prevention-tips h3 {
    font-size: 1.8rem;
    color: #1a365d;
    text-align: center;
    margin-bottom: 2rem;
}

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

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tip-icon {
    color: #38a169;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.tip-content h4 {
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.tip-content p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Emergency Contact */
.emergency-contact {
    text-align: center;
}

.emergency-box {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    padding: 2rem 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.4);
    gap: 1.5rem;
}

.emergency-icon {
    flex-shrink: 0;
}

.emergency-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.emergency-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.emergency-phone {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fed7d7;
    text-decoration: none;
    display: block;
}

.emergency-phone:hover {
    color: white;
}

/* Mobile Responsive for Problems Section */
@media (max-width: 768px) {
    .problem-card {
        padding: 1.5rem;
    }

    .problem-content h3 {
        font-size: 1.3rem;
    }

    .urgency-level {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .prevention-tips {
        padding: 2rem 1.5rem;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .emergency-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 2rem;
    }

    .emergency-icon {
        margin-bottom: 1rem;
    }
}

/* ===== BLOG SECTION ===== */
.blog-section {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    padding: 4rem 0;
}

.blog-content {
    margin-top: 3rem;
}

.section-header-content {
    flex: 1;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #48bb78;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid #48bb78;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-all-link:hover {
    background: #48bb78;
    color: white;
    transform: translateX(5px);
}

.view-all-link svg {
    transition: transform 0.3s ease;
}

.view-all-link:hover svg {
    transform: translateX(4px);
}

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

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: auto;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(56, 161, 105, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.blog-content-text {
    padding: 2rem;
}

.blog-content-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card.featured .blog-content-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #718096;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-excerpt p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.article-highlights li {
    padding: 0.5rem 0;
    color: #2d3748;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.article-highlights li:before {
    content: "✓";
    color: #38a169;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #38a169;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.read-more:hover {
    border-bottom-color: #38a169;
}

/* Newsletter Section */
.blog-newsletter {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    text-align: center;
}

.blog-newsletter h3 {
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 1rem;
}

.blog-newsletter p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 1rem auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #38a169;
}

.newsletter-button {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(56, 161, 105, 0.4);
}

.newsletter-note {
    font-size: 0.85rem;
    color: #718096;
    margin: 0;
}

/* Blog CTA */
.blog-cta {
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(56, 161, 105, 0.3);
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #38a169;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.blog-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive for Blog Section */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .view-all-link {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
    }

    .blog-card.featured {
        grid-template-columns: 1fr;
    }

    .blog-card.featured .blog-image {
        height: 200px;
    }

    .blog-content-text {
        padding: 1.5rem;
    }

    .blog-content-text h3 {
        font-size: 1.2rem;
    }

    .blog-card.featured .blog-content-text h3 {
        font-size: 1.4rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .blog-newsletter {
        padding: 2rem 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .blog-contact-btn {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Дополнительные исправления для мобильных устройств */
@media (max-width: 768px) {
    /* Исправления для всех секций */
    section {
        overflow: hidden;
        width: 100%;
        margin: 0;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Исправления для всех контейнеров */
    .hero-container,
    .services-container,
    .emergency-container,
    .repair-container,
    .replacement-container,
    .security-container,
    .service-container,
    .about-container,
    .pricing-container,
    .coverage-container,
    .problems-container,
    .blog-container,
    .selection-container,
    .testimonials-container,
    .faq-container,
    .contact-container,
    .footer-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow: hidden;
    }

    /* Исправления для изображений */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Исправления для абсолютного позиционирования */
    .emergency-cta,
    .cta-urgent {
        position: static !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        transform: none !important;
    }

    /* Исправления для сетки */
    .services-grid,
    .emergency-content,
    .repair-content,
    .replacement-content,
    .security-content,
    .pricing-tables,
    .coverage-grid,
    .problems-grid,
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Text overflow fixes */
    h1, h2, h3, h4, h5, h6, p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

/* Footer Service Areas Styles */
.footer-areas {
  padding: 40px 0;
  border-bottom: 1px solid rgba(201, 168, 106, 0.2);
}

.footer-areas-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.footer-areas-header img {
  filter: brightness(0) saturate(100%) invert(78%) sepia(18%) saturate(626%) hue-rotate(358deg) brightness(93%) contrast(87%);
}

.footer-areas-title {
  font-size: 16px;
  font-weight: 700;
  color: #c9a86a;
  margin: 0;
  letter-spacing: 0.5px;
}

.footer-areas-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-area-tag {
  position: relative;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 106, 0.2);
  border-radius: 8px;
  color: rgba(232, 224, 213, 0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  overflow: hidden;
}

.footer-area-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 106, 0.1), transparent);
  transition: left 0.5s ease;
}

.footer-area-tag:hover::before {
  left: 100%;
}

.footer-area-tag:hover {
  background: rgba(201, 168, 106, 0.08);
  border-color: rgba(201, 168, 106, 0.4);
  color: #c9a86a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 168, 106, 0.15);
}

/* Tablet screens */
@media (max-width: 768px) {
  .footer-areas {
    padding: 30px 0;
  }

  .footer-areas-title {
    font-size: 14px;
    text-align: center;
  }

  .footer-area-tag {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* Mobile screens */
@media (max-width: 480px) {
  .footer-areas-tags {
    gap: 8px;
  }

  .footer-area-tag {
    padding: 6px 14px;
    font-size: 11px;
  }
}
