@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #FF6B35;
    --secondary-color: #F7931E;
    --accent-color: #FDB833;
    --dark-color: #2C3E50;
    --light-color: #FFF8F0;
    --text-color: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --success: #27AE60;
    --error: #E74C3C;
    --shadow-sm: 0 2px 8px rgba(255, 107, 53, 0.1);
    --shadow-md: 0 4px 16px rgba(255, 107, 53, 0.15);
    --shadow-lg: 0 8px 32px rgba(255, 107, 53, 0.2);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
    overflow-x: hidden;
}

.hidden {
    display: none !important;
}

.pm4l_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.zx9k_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 15px 0;
}

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

.vb8n_logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.vb8n_logo i {
    font-size: 28px;
}

.rt5m_navigation {
    display: none;
    gap: 30px;
}

.rt5m_navigation a {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.rt5m_navigation a:hover {
    color: var(--primary-color);
}

.bg4r_burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.bg4r_burger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.bg4r_burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.bg4r_burger.active span:nth-child(2) {
    opacity: 0;
}

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

.qw8t_mobile_menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    transition: var(--transition);
    z-index: 999;
}

.qw8t_mobile_menu.active {
    left: 0;
}

.qw8t_mobile_menu a {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
}

.qw8t_mobile_menu a:hover {
    color: var(--primary-color);
    background: var(--light-color);
}

.hv2z_hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.zd4m_hero_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.uw8p_hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.85) 0%, rgba(247, 147, 30, 0.75) 100%);
    z-index: 2;
}

.df6k_hero_content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.ty9m_hero_title {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pl3n_hero_subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.xc5b_hero_buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.km7w_btn_primary {
    display: inline-block;
    padding: 15px 35px;
    min-height: 50px;
    background: var(--white);
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.km7w_btn_primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--accent-color);
}

.nv2q_btn_secondary {
    display: inline-block;
    padding: 15px 35px;
    min-height: 50px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: var(--border-radius);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.nv2q_btn_secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.wq2p_tariffs {
    padding: 80px 0;
    background: var(--white);
}

.ql8v_section_title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.rk3w_section_subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 18px;
}

.mx6n_tariffs_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.yh9k_tariff_card {
    position: relative;
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.zx2m_featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.zx2m_featured .vn4z_tariff_name,
.zx2m_featured .qm7l_tariff_price {
    color: var(--white);
}

.zx2m_featured .wp5k_tariff_features li {
    color: var(--white);
}

.zx2m_featured .km7w_btn_primary {
    background: var(--white);
    color: var(--primary-color);
}

.jw6p_badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pb2x_tariff_icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.zx2m_featured .pb2x_tariff_icon {
    color: var(--white);
}

.vn4z_tariff_name {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.qm7l_tariff_price {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.qm7l_tariff_price span {
    font-size: 18px;
    font-weight: 600;
}

.wp5k_tariff_features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.wp5k_tariff_features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.wp5k_tariff_features li i {
    color: var(--success);
}

.zx2m_featured .wp5k_tariff_features li {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.zx2m_featured .wp5k_tariff_features li i {
    color: var(--white);
}

.gh3t_tariff_btn {
    width: 100%;
    margin-top: auto;
}

.jk7d_services {
    padding: 80px 0;
    background: var(--light-color);
}

.lp9w_services_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.nt6k_service_card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.nt6k_service_card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.xv2m_service_icon {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.bh8q_service_title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.cv4n_service_text {
    color: var(--text-light);
    margin-bottom: 25px;
    flex-grow: 1;
}

.yw7p_service_btn {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.yw7p_service_btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.nh3x_coverage {
    padding: 80px 0;
    background: var(--white);
}

.qb5m_coverage_content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.mp3v_coverage_description {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.hx9w_coverage_stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.kv2n_stat_item {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.kv2n_stat_item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.zt6q_stat_number {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.lw4m_stat_label {
    color: var(--text-light);
    font-size: 16px;
}

.pn7x_coverage_image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pn7x_coverage_image img {
    width: 100%;
    height: auto;
    display: block;
}

.yx6w_support {
    padding: 80px 0;
    background: var(--light-color);
}

.vk4z_support_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.mn8w_support_card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mn8w_support_card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.lm9v_contact {
    padding: 80px 0;
    background: var(--white);
}

.qx3k_contact_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.bv9m_contact_info {
    margin-top: 30px;
}

.rx4w_contact_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-color);
}

.rx4w_contact_item i {
    color: var(--primary-color);
    font-size: 20px;
}

.nz7p_contact_form_wrapper {
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.tm5k_contact_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jq8n_form_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.jq8n_form_group label {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--dark-color);
    font-size: 14px;
}

.jq8n_form_group input,
.jq8n_form_group select,
.jq8n_form_group textarea {
    padding: 15px;
    min-height: 48px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.jq8n_form_group input:focus,
.jq8n_form_group select:focus,
.jq8n_form_group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.jq8n_form_group input:valid {
    border-color: var(--success);
}

.jq8n_form_group input:invalid:not(:placeholder-shown) {
    border-color: var(--error);
}

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

.xw9v_submit_btn {
    width: 100%;
    margin-top: 10px;
}

.zp4k_footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.lw9x_footer_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.bq3m_footer_column .vb8n_logo {
    color: var(--white);
    margin-bottom: 15px;
}

.nx7v_footer_text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.qt5w_social_links {
    display: flex;
    gap: 15px;
}

.qt5w_social_links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.qt5w_social_links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.km2n_footer_title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.yw6p_footer_links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.yw6p_footer_links li {
    color: rgba(255, 255, 255, 0.7);
}

.yw6p_footer_links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.yw6p_footer_links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.yw6p_footer_links i {
    margin-right: 8px;
    color: var(--primary-color);
}

.wp7k_footer_bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.5s ease;
}

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

.zn4v_cookie_content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.zn4v_cookie_content p {
    color: var(--white);
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.zn4v_cookie_content i {
    font-size: 24px;
    color: var(--accent-color);
}

.mq8x_cookie_buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.mq8x_cookie_buttons button {
    padding: 12px 30px;
    min-height: 45px;
}

.bw5k_modal,
.hq3z_policy_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.bw5k_modal.active,
.hq3z_policy_modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.pv9n_modal_content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.4s ease;
}

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

.xm2q_modal_close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.xm2q_modal_close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.lk7w_modal_body {
    margin-top: 20px;
}

.lk7w_modal_body h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.lk7w_modal_body p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.lk7w_modal_body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.lk7w_modal_body ul li {
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (min-width: 576px) {
    .ty9m_hero_title {
        font-size: 42px;
    }
    
    .pl3n_hero_subtitle {
        font-size: 18px;
    }
    
    .mx6n_tariffs_grid,
    .lp9w_services_grid,
    .vk4z_support_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hx9w_coverage_stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .zn4v_cookie_content {
        flex-direction: row;
        text-align: left;
    }
    
    .zn4v_cookie_content p {
        justify-content: flex-start;
    }
    
    .mq8x_cookie_buttons {
        margin-left: auto;
    }
}

@media (min-width: 768px) {
    .bg4r_burger {
        display: none;
    }
    
    .rt5m_navigation {
        display: flex;
    }
    
    .qw8t_mobile_menu {
        display: none;
    }
    
    .ty9m_hero_title {
        font-size: 56px;
    }
    
    .pl3n_hero_subtitle {
        font-size: 20px;
    }
    
    .ql8v_section_title {
        font-size: 42px;
    }
    
    .lw9x_footer_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .qb5m_coverage_content {
        grid-template-columns: 1fr 1fr;
    }
    
    .qx3k_contact_wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .pm4l_container {
        padding: 0 40px;
    }
    
    .mx6n_tariffs_grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .lp9w_services_grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .vk4z_support_grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .lw9x_footer_grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .ty9m_hero_title {
        font-size: 64px;
    }
    
    .hx9w_coverage_stats {
        gap: 40px;
    }
    
    .pv9n_modal_content {
        max-width: 700px;
    }
}