* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary-color: #000;
    --primary-dark: #333;
    --primary-light: #666;
    --secondary-color: #555;
    --secondary-light: #888;
    --accent-color: #000;
    --accent-light: #444;
    --dark-bg: #fff;
    --dark-card: #fff;
    --darker-bg: #f5f5f5;
    --card-bg: #fff;
    --glass-bg: rgba(0, 0, 0, 0.02);
    --text-light: #000;
    --text-muted: #666;
    --gradient-primary: #000;
    --gradient-secondary: #333;
    --gradient-dark: #555;
    --shadow-glow: none;
    --shadow-strong: none;
    --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.08);
}

body, 
body *:not(.fa):not(.fas):not(.fab):not(.far):not(.material-icons) {
    font-family: 'Montserrat', 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
}

body {
    background: #fff;
    color: #000;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    touch-action: pan-y;
}

/* ==================== LOADING OVERLAY ==================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
    justify-content: center;
}

.loading-icon {
    font-size: 44px;
    color: #000;
    animation: loadingPulse 1.2s ease-in-out infinite;
}

.loading-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-bar-fill {
    width: 0%;
    height: 100%;
    background: #000;
    border-radius: 3px;
    animation: loadingProgress 1.5s ease-in-out infinite;
}

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

@keyframes loadingProgress {
    0% { width: 0%; margin-left: 0; }
    50% { width: 60%; margin-left: 20%; }
    100% { width: 0%; margin-left: 100%; }
}

.site-hidden {
    opacity: 0;
}

.site-revealed {
    animation: siteReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes siteReveal {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-revealed .header {
    animation: siteReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

.site-revealed .hero-section {
    animation: siteReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.site-revealed .tariffs-section {
    animation: siteReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.site-revealed .numbers-section {
    animation: siteReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.site-revealed .features-icons-section {
    animation: siteReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.site-revealed footer {
    animation: siteReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.main-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* ==================== УБИРАЕМ ЗВЕЗДНЫЙ ФОН ==================== */
.space-bg {
    display: none;
}

.star, .gold-particle {
    display: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== HEADER ==================== */
.header {
    padding: 20px 0;
    background: #fff;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    position: relative;
}

.logo-icon {
    font-size: 60px !important;
    color: #000;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    letter-spacing: -0.5px;
    line-height: 1;
    margin: 0;
}

.logo-subtitle {
    font-size: 12px;
    color: #666;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 600;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
}

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

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

.order-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

/* ==================== БУРГЕР МЕНЮ ==================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 10001;
    min-width: 48px;
    min-height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    z-index: 10000;
    padding: 80px 20px 30px;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-link {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 10px;
    background: #f5f5f5;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-link:hover {
    background: #eee;
    transform: translateY(-2px);
}

.mobile-order-btn {
    margin-top: 20px;
    width: 100%;
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.close-menu-btn:hover {
    background: #eee;
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== HERO ==================== */
.hero {
    padding: 20px 0 20px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 74px;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 23px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 20px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: #ddd;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: #ddd;
}

/* ==================== SEARCH ==================== */
.search-section {
    margin-bottom: 60px;
    padding: 0 20px;
}

.search-prompt {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.search-box {
    display: inline-flex;
    background: #f5f5f5;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    max-width: 700px;
    width: 100%;
}

.search-input {
    flex: 1;
    padding: 24px 32px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: #000;
    outline: none;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 0 42px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 140px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==================== MASKS ==================== */
.masks-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 0 20px;
}

.mask-btn {
    background: #f5f5f5;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    border: 1px solid #eee;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.mask-btn:hover {
    transform: translateY(-2px);
    background: #eee;
}

/* ==================== SECTIONS ==================== */
.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;
    color: #000;
    position: relative;
    padding-bottom: 25px;
}

/* ==================== NUMBERS SECTION ==================== */
.numbers-section {
    padding: 60px 0;
    position: relative;
}

.numbers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
}

.masks-in-numbers {
    margin-bottom: 40px;
}

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

.numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
}

.mask-group {
    margin-bottom: 0;
}

.mask-group-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.mask-group-title {
    font-size: 28px;
    font-weight: 800;
    color: #000;
    letter-spacing: -0.5px;
}

.mask-group-count {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

.numbers-in-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.numbers-in-group:has(.number-card:nth-last-child(3):first-child) {
    grid-template-columns: repeat(3, 1fr);
}

.numbers-in-group:has(.number-card:nth-last-child(2):first-child) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.numbers-in-group:has(.number-card:only-child) {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
}

.number-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px 24px 28px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.number-card:hover {
    transform: translateY(-6px);
    border-color: #ddd;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.number-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #f5f5f5;
    color: #000;
}

.badge-vip {
    background: #000;
    color: #fff;
}

.badge-hit {
    background: #333;
    color: #fff;
}

.badge-sale {
    background: #555;
    color: #fff;
}

.badge-new {
    background: #777;
    color: #fff;
}

.phone-number {
    font-family: 'Courier New', monospace;
    font-size: 26px;
    font-weight: 800;
    color: #000;
    text-align: center;
    padding: 25px 15px;
    background: #f8f8f8;
    border-radius: 18px;
    margin: 15px 0 20px;
    letter-spacing: 1px;
    border: 1px solid #f0f0f0;
}

.number-price {
    text-align: center;
    margin: 10px 0 25px;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.number-price .price-value {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    letter-spacing: -0.5px;
}

.number-price .price-currency {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin-left: 4px;
}

.number-price .price-period {
    font-size: 13px;
    color: #999;
    font-weight: 400;
    margin-left: 4px;
}

.number-price .price-empty {
    font-size: 24px;
    font-weight: 600;
    color: #999;
}

.card-footer {
    margin-top: auto;
}

.select-number-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 16px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.select-number-btn:hover {
    background: #222;
    transform: translateY(-2px);
}

.show-more-btn {
    background: transparent;
    color: #000;
    border: 1.5px solid #eee;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.show-more-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
    transform: translateY(-2px);
}

.view-all-container {
    text-align: center;
    margin-top: 60px;
}

.view-all-btn {
    background: transparent;
    color: #000;
    border: 2px solid #eee;
    padding: 22px 70px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* ==================== TARIFFS SECTION ==================== */
.tariffs-section {
    padding: 60px 0;
    position: relative;
}

.tariffs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
}

.tariffs-wrapper {
    position: relative;
    margin-bottom: 70px;
}

.tariffs-container {
    overflow: hidden;
    position: relative;
}

.tariffs-slider {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 24px;
    padding: 10px 5px;
}

.tariff-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 30px 24px 28px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.tariff-card:hover {
    transform: translateY(-6px);
    border-color: #ddd;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.tariff-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-hit {
    background: #e74c3c;
    color: #fff;
}

.badge-vip {
    background: #f39c12;
    color: #fff;
}

.badge-new {
    background: #27ae60;
    color: #fff;
}

.badge-sale {
    background: #9b59b6;
    color: #fff;
}

.tariff-operator {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    margin-top: 10px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.tariff-specs-line {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    padding: 12px;
    background: #f8f8f8;
    border-radius: 18px;
    border: 1px solid #f0f0f0;
}

.tariff-price {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin: 15px 0 20px;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.price-period {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    margin-left: 4px;
}

.tariff-connect-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 16px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.tariff-connect-btn:hover {
    background: #222;
    transform: translateY(-2px);
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav-btn:hover {
    background: #f5f5f5;
}

.slider-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.prev-btn { left: -20px; }
.next-btn { right: -20px; }

.pick-tariff-container {
    text-align: center;
}

.pick-tariff-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 18px 60px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: transform 0.3s ease;
}

.pick-tariff-btn:hover {
    transform: translateY(-2px);
}

/* ==================== REVIEWS SECTION ==================== */
.reviews-section {
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
}

.reviews-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.reviews-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.reviews-link-btn:hover {
    transform: translateY(-2px);
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
    padding: 60px 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-box i {
    font-size: 36px;
    color: #000;
}

.feature-title {
    font-size: 16px;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-desc {
    font-size: 14px;
    color: #666;
}

/* ==================== OPERATORS SECTION ==================== */
.operators-section {
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.operators-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
}

.operators-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.operators-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.operator-item {
    padding: 20px;
}

.operator-logo-img {
    max-width: 120px;
    max-height: 60px;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 60px 0 30px;
    background: #f5f5f5;
    border-top: 1px solid #eee;
}

.footer-content {
    text-align: center;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo .logo {
    font-size: 28px;
    margin-bottom: 5px;
}

.footer-subtitle {
    font-size: 14px;
    color: #666;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phone-link,
.email-link {
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.phone-link:hover,
.email-link:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #000;
    color: #fff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.copyright {
    font-size: 14px;
    color: #666;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.payment-img {
    height: 30px;
    filter: grayscale(100%);
    opacity: 0.6;
}

/* ==================== АДАПТИВ ==================== */

/* Планшеты 992-1200px */
@media (max-width: 1200px) {
    .tariff-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .numbers-in-group {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Планшеты до 992px - включаем бургер меню */
@media (max-width: 992px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .order-btn:not(.mobile-order-btn) {
        display: none;
    }
    
    .header-content {
        flex-wrap: nowrap;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .numbers-in-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .numbers-in-group:has(.number-card:nth-last-child(2):first-child) {
        max-width: 600px;
    }
    
    /* Меню выезжает справа */
    .mobile-menu {
        left: auto;
        right: -100%;
        transition: right 0.3s ease;
    }
    
    .mobile-menu.active {
        right: 0;
        left: auto;
    }
    
    @keyframes fadeIn {
        from {
            right: -100%;
        }
        to {
            right: 0;
        }
    }
}

/* Мобильные до 768px */
@media (max-width: 768px) {
    .tariff-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .tariffs-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .tariff-card {
        scroll-snap-align: center;
    }
    
    .slider-nav-btn {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        align-items: center;
    }
    
    .numbers-in-group {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .numbers-in-group:has(.number-card:nth-last-child(2):first-child) {
        max-width: 100%;
    }
    
    .numbers-in-group:has(.number-card:only-child) {
        max-width: 100%;
    }
    
    .mask-group-title {
        font-size: 22px;
    }
}

/* Маленькие мобильные до 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .search-input {
        padding: 18px 20px;
        font-size: 16px;
    }
    
    .search-btn {
        padding: 0 20px;
        min-width: 100px;
    }
    
    .search-btn .btn-text {
        display: none;
    }
    
    .number-card {
        padding: 20px 18px;
    }
    
    .phone-number {
        font-size: 20px;
        padding: 18px 12px;
    }
    
    .mask-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .number-price .price-value {
        font-size: 26px;
    }
}

/* ==================== БУРГЕР МЕНЮ - ОБЯЗАТЕЛЬНЫЕ СТИЛИ ==================== */

/* Базовые стили кнопки */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Анимация при открытии */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Мобильная версия - показываем кнопку */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex !important;
        order: 3;
    }
    
    .order-btn:not(.mobile-order-btn) {
        display: none !important;
    }
    
    .nav {
        display: none !important;
    }
    
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
}

/* Для телефонов */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex !important;
        width: 48px;
        height: 48px;
    }
    
    .mobile-menu-btn span {
        width: 22px;
        height: 2px;
    }
}