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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
    min-height: 100vh;
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand h2 {
    color: #101046;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.logo svg {
    transition: transform 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.1);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1e40af;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #1e40af;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow,
.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid #e2e8f0;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-link:hover {
    background: #f8f9fa;
    color: #1e40af;
    padding-left: 2rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-green {
    background: #10b981;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #1e40af;
    border: 1px solid #1e40af;
}

.btn-primary {
    background: #26d0ce;
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
}

.btn-secondary {
    background: transparent;
    color: #1e40af;
    border: 2px solid #1e40af;
    padding: 1rem 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    color: #101046;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #101046;
}

.highlight {
    color: #26d0ce;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
    color: #101046;
}

.checkmark {
    background: white;
    color: #26d0ce;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
    border: 2px solid #26d0ce;
}

.pricing {
    margin-top: 3rem;
}

.pricing-text {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #101046;
}

.old-price {
    text-decoration: line-through;
    color: #101046;
}

.new-price {
    color: #26d0ce;
    font-weight: bold;
    font-size: 2rem;
}

.guarantee {
    margin-top: 1rem;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Domain Section */
.domain {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    padding: 80px 0;
    text-align: center;
}

.domain-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #101046;
    margin-bottom: 1rem;
}

.domain-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.domain-search {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 4rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.domain-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
    outline: none;
    background: white;
}

.domain-input:focus {
    border-color: #26d0ce;
    box-shadow: 0 0 0 3px rgba(38, 208, 206, 0.1);
}

.btn-search {
    background: #26d0ce;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-search:hover {
    background: #22b5b3;
}

.domain-options-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #101046;
    margin-bottom: 2rem;
}

.domain-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.domain-option {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.domain-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.domain-ext {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #101046;
    margin-bottom: 0.5rem;
}

.domain-price {
    color: #6b7280;
    font-size: 0.9rem;
}

.domain-features-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #101046;
    margin-bottom: 3rem;
}

.domain-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.domain-feature {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.domain-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.domain-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.domain-feature h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #101046;
    margin-bottom: 1rem;
}

.domain-feature p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Stats Section */
.stats {
    background: white;
    color: #333;
    padding: 80px 0;
    text-align: center;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #101046;
}

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

.stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

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

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: #e0f7fa;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stat-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #101046;
}

.stat-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Full-Service Website Section */
.full-service {
    background: #f8f9fa;
    padding: 80px 0;
}

.full-service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.full-service-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #101046;
    margin-bottom: 1rem;
}

.full-service-subtitle {
    font-size: 0.9rem;
    color: #26d0ce;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.full-service-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.btn-consultation {
    background: #26d0ce;
    color: white;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-consultation:hover {
    background: #22b5b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Pricing Plans Section */
.pricing-plans {
    background: #e0f7fa;
    padding: 80px 0;
}

.pricing-plans-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #101046;
    margin-bottom: 3rem;
}

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

.plan-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

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

.plan-recommended {
    border-color: #26d0ce;
    transform: scale(1.05);
}

.recommended-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #26d0ce;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #101046;
    margin-bottom: 0.5rem;
}

.plan-normal-price {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #26d0ce;
    margin-bottom: 1.5rem;
}

.btn-plan {
    background: #26d0ce;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 2rem;
    width: 100%;
}

.plan-features {
    text-align: left;
}

.plan-feature {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.9rem;
    border-bottom: 1px solid #f3f4f6;
}

.plan-feature:last-child {
    border-bottom: none;
}

/* VPS Section */
.vps {
    background: #f1f5f9;
    padding: 80px 0;
}

.vps-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vps-title {
    font-size: 3rem;
    font-weight: 700;
    color: #101046;
    margin-bottom: 2rem;
}

.vps-features {
    margin-bottom: 2.5rem;
}

.vps-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #101046;
    font-size: 1rem;
}

.vps-feature .checkmark {
    background: #26d0ce;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
    border: none;
}

.feature-highlight {
    color: #26d0ce;
    font-weight: 600;
}

.vps-pricing-text {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #101046;
}

.vps-pricing .old-price {
    text-decoration: line-through;
    color: #6b7280;
    font-size: 1.2rem;
}

.vps-pricing .new-price {
    color: #101046;
    font-weight: bold;
    font-size: 2rem;
}

.btn-vps {
    background: #26d0ce;
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.vps-guarantee {
    color: #6b7280;
    font-size: 0.9rem;
}

.guarantee-link {
    color: #1e40af;
    text-decoration: underline;
    cursor: pointer;
}

.vps-image {
    text-align: center;
}

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

/* Expert Support Section */
.expert-support {
    background: #26d0ce;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.support-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.support-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: white;
    opacity: 0.95;
}

.support-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.support-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-icon:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

/* FAQ Section */
.faq {
    background: #e0f7fa;
    padding: 80px 0;
}

.faq-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #101046;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #101046;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    gap: 1rem;
}

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

.faq-toggle {
    color: #26d0ce;
    font-size: 1rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
    order: -1;
}

.faq-item.active .faq-toggle {
    transform: rotate(90deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.2rem;
    max-height: 500px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    border: 1px solid #e2e8f0;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #9ca3af;
}

.close:hover {
    color: #101046;
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #101046;
}

.modal-pricing {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #6b7280;
}

.modal-price {
    color: #dc2626;
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
}

.modal-text {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Полная адаптивная система - от 330px до десктопа */

/* Экстра маленькие экраны: 320px - 479px */
@media (max-width: 479px) {
    /* Основные контейнеры */
    .container {
        padding: 0 5px;
        max-width: 100%;
        min-width: 320px;
    }
    
    /* Навигация */
    .navbar {
        padding: 0.5rem 8px;
        flex-wrap: nowrap;
        position: relative;
        justify-content: space-between;
    }

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

    .nav-brand {
        order: 1;
    }

    .nav-brand h2 {
        font-size: 1.1rem;
    }

    .logo {
        gap: 0.4rem;
    }

    .logo svg {
        width: 22px;
        height: 22px;
    }

    /* Скрываем nav-actions на мобильных */
    .nav-actions {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        max-height: 450px;
        padding: 0.5rem 0;
    }

    .nav-menu .nav-item {
        border-bottom: 1px solid #f3f4f6;
    }

    .nav-menu .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        justify-content: space-between;
    }

    /* Добавляем кнопки в мобильное меню */
    .nav-menu::after {
        content: '';
        display: block;
        border-top: 1px solid #f3f4f6;
        margin: 0.5rem 0;
    }

    .nav-menu::after {
        content: '';
        display: none;
    }

    .nav-menu.active::after {
        content: '';
        display: block;
        border-top: 1px solid #f3f4f6;
        margin: 0.5rem 0;
    }

    /* Создаем мобильные кнопки через псевдоэлементы или добавим в HTML */
    .nav-menu.active::before {
        content: '';
        display: block;
    }

    .dropdown-menu {
        position: static;
        background: #f8f9fa;
        box-shadow: none;
        border: none;
        border-radius: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .dropdown.active .dropdown-menu {
        max-height: 250px;
        padding: 0.25rem 0;
    }

    .dropdown-link {
        padding: 0.4rem 2rem;
        font-size: 0.8rem;
    }

    .btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        width: 100%;
        text-align: center;
    }

    /* Hero секция */
    .hero {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
        line-height: 1.1;
        padding: 0 5px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        padding: 0 10px;
        line-height: 1.4;
    }

    /* Особенности */
    .features-list {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        text-align: center;
        margin: 0 auto 2rem;
    }

    .feature-item {
        justify-content: center;
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .checkmark {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }

    /* Цены в Hero */
    .pricing-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .new-price {
        font-size: 1.4rem;
    }

    .btn-primary {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    /* Доменная секция */
    .domain-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .domain-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    .domain-search {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 5px;
    }

    .domain-input {
        border-radius: 8px;
        border-right: 1px solid #e2e8f0;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .btn-search {
        border-radius: 8px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .domain-options-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .domain-options {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0 5px;
    }

    .domain-option {
        padding: 1rem 0.8rem;
    }

    .domain-ext {
        font-size: 1.1rem;
    }

    .domain-price {
        font-size: 0.8rem;
    }

    .domain-features-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .domain-features {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 5px;
    }

    .domain-feature {
        padding: 1.5rem 1rem;
    }

    .domain-feature-icon {
        font-size: 2rem;
    }

    .domain-feature h4 {
        font-size: 1.1rem;
    }

    .domain-feature p {
        font-size: 0.85rem;
    }

    /* Статистика */
    .stats {
        padding: 60px 0;
    }

    .stats-title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

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

    .stat-card {
        padding: 1.2rem 0.8rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .stat-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .stat-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* VPS секция */
    .vps {
        padding: 60px 0;
    }

    .vps-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .vps-image {
        order: -1;
    }

    .vps-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .vps-feature {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .vps-feature .checkmark {
        width: 16px;
        height: 16px;
        font-size: 0.6rem;
    }

    .vps-pricing-text {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .vps-pricing .new-price {
        font-size: 1.6rem;
    }

    .btn-vps {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

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

    /* Полносервисная секция */
    .full-service {
        padding: 60px 0;
    }

    .full-service-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .full-service-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .full-service-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .full-service-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .btn-consultation {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    /* Тарифы */
    .pricing-plans {
        padding: 60px 0;
    }

    .pricing-plans-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 5px;
    }

    .plan-card {
        padding: 1.2rem 0.8rem;
        margin-bottom: 0.5rem;
    }

    .plan-recommended {
        transform: none;
        margin-bottom: 0.5rem;
    }

    .recommended-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        top: -8px;
    }

    .plan-name {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }

    .plan-price {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .btn-plan {
        padding: 0.8rem 1.5rem;
        font-weight: 500;
        margin-bottom: 1.5rem;
    }

    .plan-feature {
        padding: 0.4rem 0;
        font-size: 0.8rem;
    }

    /* Экспертная поддержка */
    .expert-support {
        padding: 60px 0;
    }

    .support-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .support-description {
        font-size: 0.85rem;
        margin-bottom: 2rem;
        padding: 0 15px;
        line-height: 1.5;
    }

    .support-icons {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .support-icon {
        width: 50px;
        height: 50px;
    }

    /* FAQ */
    .faq {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .faq-list {
        padding: 0 5px;
    }

    .faq-question {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        gap: 0.8rem;
    }

    .faq-toggle {
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 1rem;
    }

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

    .faq-answer p {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 0.6rem;
    }

    /* Модальное окно */
    .modal-content {
        margin: 3% auto;
        padding: 1.2rem;
        width: 95%;
        max-width: 400px;
    }

    .modal-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .modal-pricing {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .modal-price {
        font-size: 1.8rem;
    }

    .modal-text {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }

    /* Контактная страница - экстра маленькие экраны */
    .contacts-section {
        padding: 30px 0;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-card {
        padding: 0.6rem 0.4rem;
        margin-bottom: 0.5rem;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        background: white;
    }
    
    .contact-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
        border-radius: 50%;
    }
    
    .contact-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .contact-title {
        font-size: 0.85rem;
        line-height: 1.1;
        margin: 0;
        text-align: center;
        font-weight: 600;
        color: #101046;
        max-width: 100%;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .contact-schedule {
        font-size: 0.65rem;
        margin: 0.1rem 0 0 0;
        text-align: center;
        line-height: 1.2;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .contact-info {
        margin-bottom: 0.4rem;
        display: block;
        width: 100%;
    }
    
    .contact-info-label {
        font-size: 0.6rem;
        margin-bottom: 0.1rem;
        color: #6b7280;
        font-weight: 500;
        display: block;
    }
    
    .contact-info-value {
        font-size: 0.7rem;
        line-height: 1.2;
        margin: 0;
        word-break: break-all;
        width: 100%;
        hyphens: auto;
        overflow-wrap: anywhere;
        color: #101046;
        font-weight: 500;
    }
    
    .complaints-section {
        padding: 0.6rem 0.4rem;
        margin-bottom: 1rem;
        border-radius: 8px;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .complaints-section .contact-header {
        margin-bottom: 0.6rem;
    }
    
    .map-section {
        padding: 0.6rem 0.4rem;
        border-radius: 8px;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .map-container {
        height: 150px;
        border-radius: 6px;
    }
    
    .map-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        text-align: center;
        color: #101046;
        font-weight: 600;
    }

    /* Дополнительные фиксы для очень узких экранов */
    .contact-card > div:last-child {
        width: 100%;
        overflow: hidden;
    }

    /* Обеспечиваем что длинные тексты помещаются */
    .contact-info-value {
        max-width: 100%;
        white-space: normal;
    }

    /* Специальная обработка для длинных заголовков */
    .contact-title {
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Убираем лишние отступы */
    .contact-card:last-child {
        margin-bottom: 0;
    }

    /* Таблицы */
    .tables-section {
        padding: 50px 0;
    }

    .table-container {
        margin-bottom: 30px;
    }

    .table-container h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .table-container table {
        min-width: 350px;
        font-size: 0.7rem;
    }

    .table-container th,
    .table-container td {
        padding: 0.4rem 0.2rem;
    }

    .table-container td img {
        width: 14px;
        height: 14px;
        margin-right: 4px;
    }

    /* ОС */
    .os-section {
        padding: 50px 0;
    }

    .os-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .os-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .os-card {
        padding: 0.6rem;
    }

    .os-card img {
        width: 24px;
        height: 24px;
        margin-bottom: 0.4rem;
    }

    .os-card h4 {
        font-size: 0.75rem;
    }

    /* Локации */
    .locations-section {
        padding: 50px 0;
    }

    .locations-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

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

    .location-card {
        padding: 0.8rem;
    }

    .location-flag {
        width: 32px;
        height: 24px;
        margin-bottom: 0.6rem;
    }

    .location-name {
        font-size: 0.85rem;
    }

    .location-details {
        font-size: 0.7rem;
    }

    /* Ограничения */
    .limitations-section {
        padding: 50px 0;
    }

    .limitations-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .limitations-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .limitation-item {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .limitation-icon {
        font-size: 1.2rem;
    }
    
    .limitation-text h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .limitation-text p {
        font-size: 0.85rem;
    }
    
    .upgrade-card {
        padding: 1.5rem;
    }
    
    .upgrade-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .upgrade-card p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    /* Footer */
    .footer {
        padding: 50px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-description {
        font-size: 0.85rem;
        margin: 1rem 0;
    }

    .footer-social {
        justify-content: center;
        gap: 0.8rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-link {
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding: 1.5rem 0;
    }

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

    .footer-copyright {
        font-size: 0.8rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-legal-link {
        font-size: 0.8rem;
    }
}

/* Маленькие экраны: 480px - 767px */
@media (min-width: 480px) and (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 0.75rem 15px;
        flex-wrap: wrap;
        position: relative;
    }

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

    .nav-brand h2 {
        font-size: 1.3rem;
    }

    .logo svg {
        width: 26px;
        height: 26px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        max-height: 400px;
        padding: 0.75rem 0;
    }

    .nav-menu .nav-link {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .nav-actions {
        order: 2;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 0.5rem;
        margin-left: auto;
        margin-top: 0;
    }

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

    .hero {
        padding: 100px 0 60px;
    }

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

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

    .features-list {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        text-align: center;
    }

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

    .checkmark {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }

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

    .domain-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

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

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .vps-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .full-service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .full-service-title {
        font-size: 2rem;
    }

    .pricing-plans-title {
        font-size: 1.8rem;
    }

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

    .plan-recommended {
        transform: none;
    }

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

    .support-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .support-icons {
        gap: 2rem;
    }

    .support-icon {
        width: 65px;
        height: 65px;
    }

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

    /* Контакты для средних экранов */
    .contacts-section {
        padding: 60px 0;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-card {
        padding: 1.5rem 1.2rem;
    }
    
    .contact-header {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1.2rem;
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
    }
    
    .contact-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .contact-title {
        font-size: 1.3rem;
        text-align: left;
    }
    
    .contact-schedule {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .map-container {
        height: 280px;
    }
    
    .map-title {
        font-size: 1.6rem;
    }

    .complaints-section {
        padding: 1.5rem 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .map-section {
        padding: 1.5rem 1.2rem;
    }
}

/* Планшеты и средние экраны: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 1rem 20px;
    }

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

    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .domain-options {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .vps-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        text-align: left;
    }

    .full-service-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        text-align: left;
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .support-icons {
        gap: 2.5rem;
    }

    /* Контакты для планшетов */
    .contacts-section {
        padding: 70px 0;
    }
    
    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .contact-title {
        font-size: 1.4rem;
    }
    
    .map-container {
        height: 350px;
    }
    
    .map-title {
        font-size: 1.8rem;
    }

    .complaints-section {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }
    
    .map-section {
        padding: 2rem 1.5rem;
    }

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

/* Большие экраны: 1024px и выше */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        background: none;
        box-shadow: none;
        max-height: none;
        overflow: visible;
        transition: none;
        padding: 0;
        flex-direction: row;
        gap: 2rem;
    }

    .nav-menu .nav-item {
        border-bottom: none;
    }

    .nav-menu .nav-link {
        padding: 0;
        font-size: 1rem;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        min-width: 200px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 0.5rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1001;
        border: 1px solid #e2e8f0;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .dropdown-link:hover {
        background: #f8f9fa;
        padding-left: 2rem;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: nowrap;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        width: auto;
    }

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

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

    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        text-align: left;
    }

    .feature-item {
        justify-content: flex-start;
    }

    .domain-options {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .vps-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .vps-image {
        order: 0;
    }

    .full-service-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .plan-recommended {
        transform: scale(1.05);
    }

    .support-icons {
        gap: 3rem;
    }

    .support-icon {
        width: 80px;
        height: 80px;
    }

    /* Полноценные контакты для десктопа */
    .contacts-section {
        padding: 80px 0;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }
    
    .contact-card {
        padding: 2.5rem;
    }
    
    .contact-header {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .contact-title {
        font-size: 1.5rem;
        text-align: left;
    }
    
    .contact-schedule {
        text-align: left;
    }
    
    .map-container {
        height: 400px;
    }
    
    .map-title {
        font-size: 2rem;
    }

    .complaints-section {
        padding: 2.5rem;
        margin-bottom: 4rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .map-section {
        padding: 2.5rem;
    }

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

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
        gap: 3rem;
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-bottom-content {
        flex-direction: row;
        text-align: left;
    }

    .footer-legal {
        flex-direction: row;
        gap: 2rem;
    }
}

/* Tables Section */
.tables-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.table-container {
    margin-bottom: 60px;
}

.table-container h3 {
    text-align: center;
    font-size: 2rem;
    color: #101046;
    margin-bottom: 2rem;
    font-weight: 700;
}

.table-container > div {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.table-container table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    min-width: 600px;
}

.table-container thead {
    background: #101046;
    color: white;
}

.table-container th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

.table-container td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    font-size: 0.95rem;
}

.table-container tbody tr:last-child td {
    border-bottom: none;
}

.table-container tbody tr:hover {
    background-color: #f9fafb;
}

/* Control Panel Table Special Styles */
.table-container td img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
    flex-shrink: 0;
}

.table-container td:has(img) {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Tables Section */
.tables-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.table-container {
    margin-bottom: 60px;
}

.table-container h3 {
    text-align: center;
    font-size: 2rem;
    color: #101046;
    margin-bottom: 2rem;
}

.table-container > div {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.table-container table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    min-width: 600px;
}

.table-container thead {
    background: #101046;
    color: white;
}

.table-container th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

/* Operating Systems Section */
.os-section {
    background: white;
    padding: 80px 0;
}

.os-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #101046;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.os-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.os-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #26d0ce;
    background: white;
}

.os-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.os-card:hover img {
    transform: scale(1.1);
}

.os-card h4 {
    color: #101046;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* VDS Locations Section */
.locations-section {
    background: #e0f7fa;
    padding: 80px 0;
}

.locations-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #101046;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.location-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

/* Hosting Limitations Section */
.limitations-section {
    background: #fff8e1;
    padding: 80px 0;
}

.limitations-title {
    text-align: center;
    font-size: 2.5rem;
    color: #101046;
    margin-bottom: 3rem;
    font-weight: 700;
}

.limitations-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.limitations-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.limitation-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #ff9800;
}

.limitation-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.limitation-text h4 {
    margin: 0 0 0.5rem 0;
    color: #101046;
    font-size: 1.1rem;
    font-weight: 600;
}

.limitation-text p {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.upgrade-card {
    background: linear-gradient(135deg, #26d0ce 0%, #1a9d9c 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: fit-content;
}

.upgrade-card h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.upgrade-card p {
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
    line-height: 1.6;
}

.btn-upgrade {
    background: white;
    color: #26d0ce;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-upgrade:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Plan Specs */
.plan-specs {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.plan-specs p {
    margin: 0.5rem 0;
    color: #101046;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .limitations-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .limitation-item {
        padding: 1rem;
    }
    
    .upgrade-card {
        padding: 1.5rem;
    }
}

.location-flag {
    width: 64px;
    height: 48px;
    margin: 0 auto 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.location-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #101046;
    margin: 0;
}

.location-details {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .tables-section {
        padding: 60px 0;
    }

    .table-container {
        margin-bottom: 40px;
    }

    .table-container h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .table-container table {
        min-width: 500px;
    }

    .table-container th,
    .table-container td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }

    .table-container td img {
        width: 20px;
        height: 20px;
    }

    .os-section {
        padding: 60px 0;
    }

    .os-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .os-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .os-card {
        padding: 1rem;
    }

    .os-card img {
        width: 40px;
        height: 40px;
    }

    .os-card h4 {
        font-size: 1rem;
    }

    .locations-section {
        padding: 60px 0;
    }

    .locations-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .location-card {
        padding: 1.5rem;
    }

    .location-flag {
        width: 48px;
        height: 36px;
    }

    .location-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .table-container h3 {
        font-size: 1.5rem;
    }

    .table-container table {
        min-width: 450px;
    }

    .table-container th,
    .table-container td {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
    }

    .table-container td img {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }

    .os-section h2 {
        font-size: 1.8rem;
    }

    .os-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .os-card {
        padding: 0.75rem;
    }

    .os-card img {
        width: 32px;
        height: 32px;
    }

    .os-card h4 {
        font-size: 0.9rem;
    }

    .locations-section h2 {
        font-size: 1.8rem;
    }

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

    .location-card {
        padding: 1rem;
    }

    .location-flag {
        width: 40px;
        height: 30px;
    }

    .location-name {
        font-size: 1rem;
    }

    .location-details {
        font-size: 0.8rem;
    }
}

/* Экстремально узкие экраны: до 320px */
@media (max-width: 320px) {
    .container {
        padding: 0 3px;
        min-width: 300px;
    }

    /* Контакты для экстремально узких экранов */
    .contacts-section {
        padding: 20px 0;
    }
    
    .contact-card {
        padding: 0.4rem 0.2rem;
        margin-bottom: 0.3rem;
        border-radius: 6px;
    }
    
    .contact-header {
        gap: 0.3rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
    }
    
    .contact-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .contact-title {
        font-size: 0.75rem;
        line-height: 1;
    }
    
    .contact-schedule {
        font-size: 0.55rem;
    }
    
    .contact-info {
        margin-bottom: 0.3rem;
    }
    
    .contact-info-label {
        font-size: 0.55rem;
        margin-bottom: 0.05rem;
    }
    
    .contact-info-value {
        font-size: 0.6rem;
        line-height: 1.1;
    }
    
    .complaints-section,
    .map-section {
        padding: 0.4rem 0.2rem;
    }
    
    .map-container {
        height: 120px;
    }
    
    .map-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 330px) {
    .table-container h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .table-container table {
        min-width: 380px;
    }

    .table-container th,
    .table-container td {
        padding: 0.4rem 0.2rem;
        font-size: 0.75rem;
    }

    .table-container td img {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }

    .os-section h2 {
        font-size: 1.5rem;
    }

    .os-grid {
        gap: 0.75rem;
    }

    .os-card {
        padding: 0.5rem;
    }

    .os-card img {
        width: 28px;
        height: 28px;
        margin-bottom: 0.5rem;
    }

    .os-card h4 {
        font-size: 0.8rem;
    }

    .locations-section h2 {
        font-size: 1.5rem;
    }

    .location-card {
        padding: 0.75rem;
    }

    .location-flag {
        width: 36px;
        height: 27px;
        margin-bottom: 0.75rem;
    }

    .location-name {
        font-size: 0.9rem;
    }

    .location-details {
        font-size: 0.75rem;
    }
}

/* Documents Page Styles */
.documents-section {
    padding: 80px 0;
    background: white;
}

.documents-content {
    max-width: 800px;
    margin: 0 auto;
}

/* User Agreement Page Styles */
.user-agreement-section {
    padding: 80px 0;
    background: white;
}

.user-agreement-content {
    max-width: 1000px;
    margin: 0 auto;
}

.agreement-text {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.agreement-text h2 {
    color: #101046;
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem 0;
    border-bottom: 2px solid #22c55e;
    padding-bottom: 0.5rem;
}

.agreement-text h2:first-child {
    margin-top: 0;
}

.agreement-text p {
    color: #374151;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: justify;
}

.agreement-text ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #374151;
}

.agreement-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.agreement-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.agreement-footer p {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .user-agreement-section {
        padding: 60px 0;
    }
    
    .agreement-text {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .agreement-text h2 {
        font-size: 1.4rem;
        margin: 2rem 0 1rem 0;
    }
    
    .agreement-text p {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .agreement-text ul {
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .agreement-text {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .agreement-text h2 {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .agreement-text p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .agreement-text ul {
        margin-left: 1rem;
    }
}
    text-align: center;
}

.documents-text {
    font-size: 1.2rem;
    color: #101046;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.documents-link {
    color: #26d0ce;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.documents-link:hover {
    color: #1a9d9c;
}

/* Documents responsive */
@media (max-width: 768px) {
    .documents-section {
        padding: 60px 0;
    }
    
    .documents-text {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .documents-section {
        padding: 50px 0;
    }
    
    .documents-text {
        font-size: 1rem;
        padding: 0 15px;
    }
}

/* Contact Page Styles */
.contacts-section {
    padding: 80px 0;
}

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

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-support {
    background: #26d0ce;
}

.contact-icon-clients {
    background: #10b981;
}

.contact-icon-complaints {
    background: #dc2626;
}

.contact-title {
    color: #101046;
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.contact-schedule {
    margin: 0;
    font-weight: 600;
}

.contact-schedule-support {
    color: #26d0ce;
}

.contact-schedule-clients {
    color: #10b981;
}

.contact-info {
    margin-bottom: 1rem;
}

.contact-info-label {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: #101046;
    margin: 0;
    font-weight: 600;
}

.complaints-section {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.map-title {
    color: #101046;
    font-size: 2rem;
    margin: 0 0 2rem 0;
    text-align: center;
    font-weight: 700;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-iframe {
    border: 0;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-top: 1rem;
}

/* FAQ Categories Section */
.faq-categories-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category-link {
    text-decoration: none;
}

.faq-category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #26d0ce;
}

.faq-category-card:hover {
    transform: translateY(-5px);
}

.faq-category-title {
    color: #101046;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 0;
}

.faq-category-description {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* FAQ Categories Responsive */
@media (max-width: 767px) {
    .faq-categories-section {
        padding: 60px 0;
    }

    .faq-categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }

    .faq-category-card {
        padding: 1.5rem 1.2rem;
    }

    .faq-category-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .faq-category-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 479px) {
    .faq-categories-section {
        padding: 50px 0;
    }

    .faq-categories-grid {
        gap: 1rem;
        padding: 0 5px;
    }

    .faq-category-card {
        padding: 1.2rem 1rem;
    }

    .faq-category-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .faq-category-description {
        font-size: 0.85rem;
    }
}

/* Footer */
.footer {
    background: #101046;
    color: white;
    padding: 80px 0 0;
}

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

.footer-logo .logo h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #26d0ce;
    color: white;
    transform: translateY(-2px);
}

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

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

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

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #26d0ce;
}

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

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

.footer-copyright {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #26d0ce;
}

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-legal {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
}