:root {
    /* Emerald Green Theme */
    --primary: #10B981;
    --primary-dark: #059669;
    --primary-light: #34D399;
    --secondary: #6EE7B7;
    --accent: #A7F3D0;
    
    /* Supporting Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    
    /* Text Colors */
    --text-primary: #111827;
    --text-secondary: #4B5563;
    --text-tertiary: #9CA3AF;
    --text-inverse: #FFFFFF;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-tertiary: #F3F4F6;
    --bg-dark: #1F2937;
    --bg-darker: #111827;
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    
    /* Borders */
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --border-dark: #374151;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-colored: 0 10px 25px -5px rgba(16, 185, 129, 0.25);
    
    /* Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    
    /* Typography */
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 30px;
    --font-size-4xl: 36px;
    --font-size-5xl: 48px;
    --font-size-6xl: 60px;
    
    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-base: 0.2s ease-out;
    --transition-slow: 0.3s ease-out;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-secondary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed header */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-tertiary { color: var(--text-tertiary); }
.text-inverse { color: var(--text-inverse); }

.bg-primary { background: var(--bg-primary); }
.bg-secondary { background: var(--bg-secondary); }
.bg-dark { background: var(--bg-dark); }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }

/* Modern Header with Glassmorphism */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-base);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
    color: var(--primary);
    font-size: var(--font-size-2xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: var(--transition-bounce);
    position: relative;
}

.logo-svg {
    height: 40px;
    width: auto;
    transition: var(--transition-base);
}

.logo:hover .logo-svg {
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

nav {
    display: flex;
    gap: var(--space-2xl);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: var(--transition-base);
    position: relative;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    opacity: 0;
    transition: var(--transition-base);
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 0.1;
}

.nav-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Dark Hero Section with Animations */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: var(--text-inverse);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310B981' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-60px) translateY(-60px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-lg);
}

.hero h1 {
    font-size: clamp(var(--font-size-4xl), 8vw, var(--font-size-6xl));
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xl);
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-inverse) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero .subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-tertiary);
    font-weight: 400;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-inverse);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 700;
    font-size: var(--font-size-lg);
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.4);
}

.cta-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-inverse);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-lg);
    border: 1px solid var(--glass-border);
    transition: var(--transition-base);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    opacity: 0.1;
    animation: floatRandom 15s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatRandom {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Modern Tabs */
.countries-tabs {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin: var(--space-3xl) 0;
    background: var(--bg-primary);
    padding: var(--space-md);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    position: sticky;
    top: 140px; /* Увеличиваем отступ от шапки */
    z-index: 100;
}

/* Заголовок табов (только на мобильных) */
.tabs-header {
    display: none;
}

.tabs-content {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    width: 100%;
}

/* Отключаем sticky перед FAQ секцией */
.faq-section ~ * .countries-tabs,
.countries-tabs.before-faq {
    position: static;
}

.tab {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-secondary);
    background: transparent;
    transition: var(--transition-base);
    font-weight: 600;
    font-size: var(--font-size-sm);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition-base);
    z-index: -1;
}

.tab:hover::before {
    opacity: 0.1;
}

.tab:hover {
    color: var(--primary);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-inverse);
    box-shadow: var(--shadow-colored);
    border-color: var(--primary);
}

.tab.active::before {
    opacity: 0;
}

/* Unique Card Grid - ВОЗВРАЩАЕМ КУБИКИ НА ПК */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

/* Принудительно кубики на больших экранах */
@media (min-width: 769px) {
    .numbers-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)) !important;
    }
}

.number-card {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.number-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition-bounce);
    transform-origin: left;
}

.number-card:hover::before {
    transform: scaleX(1);
}

.number-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.number-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.flag {
    width: 32px;
    height: 24px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.flag-large {
    width: 64px;
    height: 48px;
    border-radius: var(--radius);
    object-fit: cover;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

.country-name {
    font-weight: 700;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.phone-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    text-decoration: none;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    transition: var(--transition-base);
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
}

.phone-number:hover {
    color: var(--primary);
    transform: scale(1.02);
}

.number-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.status {
    font-weight: 700;
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
}

.status.online::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.time {
    font-size: var(--font-size-xs);
    color: var(--text-tertiary);
    font-weight: 500;
}

.card-actions {
    display: flex;
    gap: var(--space-sm);
    flex-direction: column;
}

.card-actions .btn {
    flex: 1;
}

/* Modern Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 700;
    font-size: var(--font-size-base);
    transition: var(--transition-bounce);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-inverse);
    width: 100%;
    box-shadow: var(--shadow-colored);
    border: 2px solid transparent;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px -5px rgba(16, 185, 129, 0.4);
    border-color: var(--primary-light);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Modern Page Header */
.page-header {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: var(--text-inverse);
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
    margin-bottom: var(--space-3xl);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2310B981' fill-opacity='0.05'%3E%3Cpath d='M20 20.5V18H18v2.5h-2.5V22H18v2.5h2V22h2.5v-1.5H20zM0 38.5V36h2.5v2.5H5V41H2.5v2.5H0V41h-2.5v-2.5H0zm0-18.5V18h2.5v2.5H5V23H2.5v2.5H0V23h-2.5v-2.5H0zm18.5 0V18H21v2.5h2.5V23H21v2.5h-2.5V23H16v-2.5h2.5z'/%3E%3C/g%3E%3C/svg%3E");
    animation: backgroundMove 25s linear infinite;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.page-header h1 {
    font-size: clamp(var(--font-size-3xl), 6vw, var(--font-size-5xl));
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.page-header .flag-large {
    font-size: clamp(var(--font-size-4xl), 8vw, var(--font-size-6xl));
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

.page-header .available-count {
    font-size: var(--font-size-lg);
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.page-header .update-info {
    font-size: var(--font-size-sm);
    color: var(--text-tertiary);
    font-weight: 400;
}

/* Number Detail Page */
.number-detail {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    text-align: center;
    margin: 48px 0;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 13px;
}

.status-badge.online {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.online::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.phone-large {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -1px;
    font-variant-numeric: tabular-nums;
}

.number-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 20px;
}

.number-stats {
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.action-buttons .btn {
    flex: 1;
    min-width: 160px;
}

/* SMS History */
.sms-history {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 48px;
    margin-bottom: 48px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.sms-history h2 {
    margin-bottom: 32px;
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.sms-table {
    width: 100%;
}

.sms-header {
    display: grid;
    grid-template-columns: 140px 1fr 140px;
    gap: 24px;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sms-row {
    display: grid;
    grid-template-columns: 140px 1fr 140px;
    gap: 24px;
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
    transition: background 0.2s ease;
}

.sms-row:hover {
    background: var(--bg-secondary);
}

.sms-row:last-child {
    border-bottom: none;
}

.sms-service {
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
}

.sms-text {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.5;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
}

.sms-time {
    color: var(--text-tertiary);
    font-size: 12px;
    text-align: right;
}

/* Info Block */
.info-block {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.info-block h3 {
    margin-bottom: 24px;
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
}

.info-block ol {
    padding-left: 24px;
}

.info-block li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 15px;
}

.info-block li::marker {
    color: var(--primary);
    font-weight: 700;
}

/* Service Info */
.service-info {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    margin-top: 48px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.service-info h2 {
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-primary);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.info-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* Services Section */
.services-section {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    margin-bottom: 48px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.services-section h2 {
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-primary);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.service-card {
    padding: 20px 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    text-align: center;
    text-decoration: none;
    color: #1F2937;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    color: white !important;
}

.service-card:hover span {
    color: white !important;
}

.service-card span {
    position: relative;
    z-index: 1;
    color: #1F2937;
    transition: color 0.2s ease;
}

/* Service Info */
.service-info {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-info h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.info-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step p {
    color: #555;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    margin-bottom: 48px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.faq-section h2 {
    font-size: 40px;
    margin-bottom: 48px;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.faq-section h2 .highlight {
    color: var(--primary);
    position: relative;
}

.faq-section h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--primary-light);
    opacity: 0.2;
    z-index: -1;
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.2s ease;
    background: var(--bg-primary);
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-primary);
    transition: background 0.2s ease;
    user-select: none;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-question h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    color: var(--primary);
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-secondary);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
    padding: 20px 24px;
}

/* Footer */
footer {
    background: var(--bg-primary);
    margin-top: 80px;
    padding: 56px 24px 32px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto 48px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.services-list a {
    text-decoration: none;
}

.services-list span {
    background: var(--bg-secondary);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    border: 1px solid var(--border-light);
    font-weight: 500;
    display: inline-block;
}

.services-list span:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    cursor: pointer;
}

.footer-section a {
    display: block;
    margin-bottom: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    color: var(--text-tertiary);
    font-size: 13px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .header-content {
        padding: var(--space-md) 0;
    }
    
    .logo {
        font-size: var(--font-size-xl);
    }
    
    .logo-svg {
        height: 32px;
    }
    
    nav {
        gap: var(--space-lg);
    }
    
    .nav-link {
        padding: var(--space-xs) var(--space-sm);
        font-size: var(--font-size-sm);
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-content {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .hero h1 {
        font-size: var(--font-size-4xl);
        margin-bottom: var(--space-lg);
    }
    
    .hero .subtitle {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-xl);
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .cta-primary,
    .cta-secondary {
        padding: var(--space-md) var(--space-xl);
        font-size: var(--font-size-base);
    }
    
    .countries-tabs {
        gap: var(--space-xs);
        padding: var(--space-sm);
        margin: var(--space-xl) 0;
        top: 70px;
        flex-direction: column;
        transition: var(--transition-base);
    }
    
    .tabs-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: var(--space-sm) var(--space-xs);
        cursor: pointer;
        user-select: none;
        gap: var(--space-sm);
    }
    
    .tabs-title {
        font-weight: 700;
        color: var(--text-primary);
        font-size: var(--font-size-base);
        flex: 1;
        padding-left: var(--space-xs);
        display: flex;
        align-items: center;
    }
    
    .tabs-toggle {
        background: var(--primary);
        color: white;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition-base);
        font-size: var(--font-size-sm);
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .tabs-toggle:active {
        transform: scale(0.95);
    }
    
    .toggle-icon {
        transition: transform var(--transition-base);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .tabs-content {
        max-height: 500px;
        overflow-y: auto;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 1;
        margin-top: var(--space-sm);
    }
    
    .countries-tabs.collapsed .tabs-content {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        margin-top: 0;
    }
    
    .tab {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--font-size-xs);
    }
    
    .numbers-grid {
        grid-template-columns: 1fr; /* Мобилка - столбик */
        gap: var(--space-lg);
        margin-bottom: var(--space-2xl);
    }
    
    .number-card {
        padding: var(--space-lg);
    }
    
    .phone-number {
        font-size: var(--font-size-xl);
    }
    
    .floating-element {
        display: none;
    }
    
    .services-section {
        padding: var(--space-2xl) var(--space-lg);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: var(--space-sm);
    }
    
    .service-card {
        padding: var(--space-md);
        font-size: var(--font-size-xs);
    }
    
    .faq-section {
        padding: var(--space-2xl) var(--space-lg);
    }
    
    .faq-section h2 {
        font-size: var(--font-size-3xl);
        margin-bottom: var(--space-xl);
    }
    
    .faq-question h3 {
        font-size: var(--font-size-sm);
    }
    
    .faq-answer p {
        font-size: var(--font-size-sm);
    }
    
    .content-page {
        margin: var(--space-xl) auto;
    }
    
    .content-block {
        padding: var(--space-lg);
    }
    
    .page-header {
        padding: var(--space-2xl) 0;
        margin-bottom: var(--space-2xl);
    }
    
    .page-header h1 {
        font-size: var(--font-size-3xl);
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .page-header .flag-large {
        width: 48px;
        height: 36px;
    }
}

/* Small Mobile Phones (320px - 480px) */
@media (max-width: 480px) {
    body {
        padding-top: 44px;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .header-content {
        padding: var(--space-sm) 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .logo {
        font-size: var(--font-size-lg);
        flex-shrink: 0;
    }
    
    .logo-svg {
        height: 28px;
    }
    
    nav {
        gap: var(--space-xs);
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 var(--space-xs);
    }
    
    nav::-webkit-scrollbar {
        display: none;
    }
    
    .nav-link {
        padding: var(--space-xs);
        font-size: var(--font-size-xs);
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: var(--space-xl) var(--space-sm);
    }
    
    .hero h1 {
        font-size: var(--font-size-3xl);
        margin-bottom: var(--space-md);
        line-height: 1.2;
    }
    
    .hero .subtitle {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-lg);
    }
    
    .hero-cta {
        gap: var(--space-sm);
    }
    
    .cta-primary,
    .cta-secondary {
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--font-size-sm);
        width: 100%;
    }
    
    .hero-notice {
        margin-top: var(--space-md);
        padding: var(--space-sm);
    }
    
    .hero-notice p {
        font-size: var(--font-size-xs);
    }
    
    .countries-tabs {
        gap: var(--space-xs);
        padding: var(--space-xs);
        margin: var(--space-lg) 0;
        top: 60px !important;
    }
    
    .tabs-header {
        padding: var(--space-xs) 0;
    }
    
    .tabs-title {
        font-size: var(--font-size-sm);
    }
    
    .tabs-toggle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .tabs-content {
        max-height: 350px;
    }
    
    .countries-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .tab {
        padding: var(--space-xs) var(--space-sm);
        font-size: 11px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .numbers-grid {
        gap: var(--space-md);
        margin-bottom: var(--space-xl);
    }
    
    .number-card {
        padding: var(--space-md);
    }
    
    .number-header {
        gap: var(--space-sm);
        margin-bottom: var(--space-sm);
    }
    
    .flag {
        width: 24px;
        height: 18px;
    }
    
    .country-name {
        font-size: 11px;
    }
    
    .phone-number {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-sm);
        word-break: break-all;
    }
    
    .number-info {
        flex-direction: column;
        gap: var(--space-xs);
        align-items: flex-start;
        margin-bottom: var(--space-sm);
    }
    
    .status {
        font-size: 11px;
        padding: var(--space-xs) var(--space-sm);
    }
    
    .time {
        font-size: 10px;
    }
    
    .card-actions {
        gap: var(--space-xs);
    }
    
    .btn {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--font-size-xs);
        gap: var(--space-xs);
    }
    
    .services-section {
        padding: var(--space-xl) var(--space-sm);
    }
    
    .services-section h2 {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--space-xl);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xs);
    }
    
    .service-card {
        padding: var(--space-sm);
        font-size: 11px;
    }
    
    .faq-section {
        padding: var(--space-xl) var(--space-sm);
    }
    
    .faq-section h2 {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--space-lg);
    }
    
    .faq-question {
        padding: var(--space-sm) var(--space-md);
    }
    
    .faq-question h3 {
        font-size: var(--font-size-xs);
        line-height: 1.4;
    }
    
    .faq-icon {
        font-size: var(--font-size-lg);
        margin-left: var(--space-sm);
    }
    
    .faq-answer p {
        font-size: var(--font-size-xs);
        padding: var(--space-sm) var(--space-md);
        line-height: 1.5;
    }
    
    .page-header {
        padding: var(--space-xl) 0;
        margin-bottom: var(--space-xl);
    }
    
    .page-header-content {
        padding: 0 var(--space-sm);
    }
    
    .page-header h1 {
        font-size: var(--font-size-2xl);
        gap: var(--space-sm);
    }
    
    .page-header .flag-large {
        width: 40px;
        height: 30px;
    }
    
    .page-header .available-count {
        font-size: var(--font-size-base);
    }
    
    .page-header .update-info {
        font-size: var(--font-size-xs);
    }
    
    /* Number Detail Page */
    .number-detail {
        padding: var(--space-xl) var(--space-md);
        margin: var(--space-lg) 0;
    }
    
    .phone-large {
        font-size: var(--font-size-3xl);
        margin-bottom: var(--space-md);
        word-break: break-all;
    }
    
    .number-meta {
        gap: var(--space-sm);
        margin-bottom: var(--space-md);
        font-size: var(--font-size-lg);
    }
    
    .flag-large {
        width: 48px;
        height: 36px;
    }
    
    .number-stats {
        margin-bottom: var(--space-lg);
        font-size: var(--font-size-sm);
    }
    
    .action-buttons {
        gap: var(--space-xs);
        flex-direction: column;
    }
    
    .action-buttons .btn {
        min-width: auto;
        width: 100%;
    }
    
    /* SMS History */
    .sms-history {
        padding: var(--space-xl) var(--space-md);
        margin-bottom: var(--space-xl);
    }
    
    .sms-history h2 {
        margin-bottom: var(--space-lg);
        font-size: var(--font-size-xl);
    }
    
    .sms-header {
        grid-template-columns: 80px 1fr 80px;
        gap: var(--space-sm);
        padding: var(--space-xs) var(--space-sm);
        font-size: 10px;
    }
    
    .sms-row {
        grid-template-columns: 80px 1fr 80px;
        gap: var(--space-sm);
        padding: var(--space-sm);
    }
    
    .sms-service {
        font-size: var(--font-size-xs);
    }
    
    .sms-text {
        font-size: var(--font-size-xs);
        line-height: 1.4;
        word-break: break-word;
    }
    
    .sms-time {
        font-size: 10px;
    }
    
    /* Info Block */
    .info-block {
        padding: var(--space-xl) var(--space-md);
    }
    
    .info-block h3 {
        margin-bottom: var(--space-md);
        font-size: var(--font-size-lg);
    }
    
    .info-block ol {
        padding-left: var(--space-md);
    }
    
    .info-block li {
        margin-bottom: var(--space-sm);
        font-size: var(--font-size-xs);
        line-height: 1.5;
    }
    
    /* Service Info */
    .service-info {
        padding: var(--space-xl) var(--space-md);
        margin-top: var(--space-xl);
    }
    
    .service-info h2 {
        margin-bottom: var(--space-xl);
        font-size: var(--font-size-2xl);
    }
    
    .info-steps {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-md);
    }
    
    .step p {
        font-size: var(--font-size-xs);
        line-height: 1.5;
    }
    
    /* Footer */
    footer {
        padding: var(--space-xl) var(--space-sm) var(--space-lg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        margin-bottom: var(--space-xl);
    }
    
    .footer-section h3 {
        margin-bottom: var(--space-md);
        font-size: var(--font-size-sm);
    }
    
    .services-list {
        gap: var(--space-xs);
    }
    
    .services-list span {
        padding: var(--space-xs) var(--space-sm);
        font-size: 10px;
    }
    
    .footer-section a {
        margin-bottom: var(--space-sm);
        font-size: var(--font-size-xs);
    }
    
    .footer-bottom {
        padding-top: var(--space-lg);
        font-size: 11px;
    }
    
    /* Live Indicator */
    .live-indicator {
        padding: 2px var(--space-xs);
    }
    
    .live-text {
        font-size: 9px;
    }
    
    .live-dot {
        width: 5px;
        height: 5px;
    }
}o h1 {
        font-size: var(--font-size-4xl);
        margin-bottom: var(--space-lg);
    }
    
    .hero .subtitle {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-xl);
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .cta-primary,
    .cta-secondary {
        padding: var(--space-md) var(--space-xl);
        font-size: var(--font-size-base);
    }
    
    .countries-tabs {
        gap: var(--space-xs);
        padding: var(--space-sm);
        margin: var(--space-xl) 0;
        top: 93px;
    }
    
    .tab {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--font-size-xs);
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        margin-bottom: var(--space-2xl);
    }
    
    .number-card {
        padding: var(--space-lg);
    }
    
    .phone-number {
        font-size: var(--font-size-xl);
    }
    
    .floating-element {
        display: none;
    }
    
    .services-section {
        padding: var(--space-2xl) var(--space-lg);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: var(--space-sm);
    }
    
    .service-card {
        padding: var(--space-md);
        font-size: var(--font-size-xs);
    }
    
    .faq-section {
        padding: var(--space-2xl) var(--space-lg);
    }
    
    .faq-section h2 {
        font-size: var(--font-size-3xl);
        margin-bottom: var(--space-xl);
    }
    
    .faq-question h3 {
        font-size: var(--font-size-sm);
    }
    
    .faq-answer p {
        font-size: var(--font-size-sm);
    }
    
    .content-page {
        margin: var(--space-xl) auto;
    }
    
    .content-block {
        padding: var(--space-lg);
    }
    
    .page-header {
        padding: var(--space-2xl) 0;
        margin-bottom: var(--space-2xl);
    }
    
    .page-header h1 {
        font-size: var(--font-size-3xl);
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .page-header .flag-large {
        width: 48px;
        height: 36px;
    }
}

/* Content Pages */
.content-page {
    max-width: 900px;
    margin: var(--space-3xl) auto;
}

.content-block {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl) var(--space-3xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.content-block:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.content-block h2 {
    color: var(--text-primary);
    font-size: var(--font-size-2xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.content-block p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: var(--font-size-base);
    margin-bottom: var(--space-md);
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block ul {
    padding-left: var(--space-xl);
    color: var(--text-secondary);
}

.content-block li {
    margin-bottom: var(--space-md);
    line-height: 1.7;
    font-size: var(--font-size-base);
}

.content-block li::marker {
    color: var(--primary);
}

.content-block a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-base);
}

.content-block a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.text-secondary {
    color: var(--text-tertiary);
    font-size: var(--font-size-sm);
}
/* Mobile Page Header */
@media (max-width: 768px) {
    .page-header {
        padding: var(--space-2xl) 0;
        margin-bottom: var(--space-2xl);
    }
    
    .page-header h1 {
        font-size: var(--font-size-3xl);
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .page-header .flag-large {
        width: 48px;
        height: 36px;
    }
}
/* Contacts Page Styles */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.contact-method {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-base);
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-lg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.contact-method h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: var(--font-size-lg);
    transition: var(--transition-base);
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-note {
    color: var(--text-tertiary);
    font-size: var(--font-size-sm);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-light);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-days {
    font-weight: 600;
    color: var(--text-primary);
}

.schedule-time {
    color: var(--text-secondary);
}

.contact-form-section {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    text-align: center;
}

.form-header h2 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.form-header p {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-2xl);
}

.contact-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.category-item {
    padding: var(--space-xl);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.category-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.category-icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-md);
}

.category-item h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.category-item p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.hero-card,
.features-card,
.countries-card,
.services-card,
.warning-card,
.contact-card {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.hero-card:hover,
.features-card:hover,
.countries-card:hover,
.services-card:hover,
.warning-card:hover,
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-lg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-card h2,
.features-card h2,
.countries-card h2,
.services-card h2,
.warning-card h2,
.contact-card h2 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm);
    border-radius: var(--radius);
    transition: var(--transition-base);
}

.feature-item:hover {
    background: var(--bg-secondary);
}

.feature-icon {
    font-size: var(--font-size-xl);
}

.countries-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.country-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    border-radius: var(--radius);
    transition: var(--transition-base);
}

.country-item:hover {
    background: var(--bg-secondary);
}

.country-item img {
    width: 32px;
    height: 24px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.country-item span {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--text-secondary);
}

.countries-more {
    color: var(--text-tertiary);
    font-size: var(--font-size-sm);
    text-align: center;
    font-style: italic;
}

.services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.service-tag {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.service-tag:hover {
    background: var(--primary);
    color: var(--text-inverse);
    border-color: var(--primary);
}

.warning-card {
    border-color: var(--warning);
    background: linear-gradient(135deg, var(--bg-primary) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.warning-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-card {
    text-align: center;
}

.inline-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-base);
}

.inline-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Mobile Responsive for new pages */
@media (max-width: 768px) {
    .contacts-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .contact-method,
    .hero-card,
    .features-card,
    .countries-card,
    .services-card,
    .warning-card,
    .contact-card {
        padding: var(--space-lg);
    }
    
    .contact-form-section {
        padding: var(--space-xl);
    }
    
    .countries-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-categories {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* Small Mobile for content pages */
@media (max-width: 480px) {
    .content-page {
        margin: var(--space-lg) auto;
    }
    
    .content-block {
        padding: var(--space-md);
        margin-bottom: var(--space-md);
        border-radius: var(--radius-lg);
    }
    
    .content-block h2 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-sm);
        gap: var(--space-sm);
    }
    
    .content-block p {
        font-size: var(--font-size-xs);
        margin-bottom: var(--space-sm);
        line-height: 1.5;
    }
    
    .content-block li {
        margin-bottom: var(--space-sm);
        font-size: var(--font-size-xs);
        line-height: 1.5;
    }
    
    /* Contacts Page */
    .contacts-grid {
        gap: var(--space-md);
    }
    
    .contact-method {
        padding: var(--space-md);
    }
    
    .contact-icon {
        font-size: var(--font-size-3xl);
        margin-bottom: var(--space-sm);
    }
    
    .contact-method h3 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-sm);
    }
    
    .contact-link {
        font-size: var(--font-size-base);
    }
    
    .contact-note {
        font-size: var(--font-size-xs);
    }
    
    .schedule-item {
        padding: var(--space-xs) 0;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }
    
    .schedule-days,
    .schedule-time {
        font-size: var(--font-size-xs);
    }
    
    .contact-form-section {
        padding: var(--space-lg);
    }
    
    .form-header h2 {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--space-sm);
    }
    
    .form-header p {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-lg);
    }
    
    .contact-categories {
        gap: var(--space-md);
    }
    
    .category-item {
        padding: var(--space-md);
    }
    
    .category-icon {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--space-sm);
    }
    
    .category-item h4 {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-xs);
    }
    
    .category-item p {
        font-size: var(--font-size-xs);
    }
    
    /* About Page */
    .about-grid {
        gap: var(--space-md);
    }
    
    .hero-card,
    .features-card,
    .countries-card,
    .services-card,
    .warning-card,
    .contact-card {
        padding: var(--space-md);
    }
    
    .card-icon {
        font-size: var(--font-size-3xl);
        margin-bottom: var(--space-sm);
    }
    
    .hero-card h2,
    .features-card h2,
    .countries-card h2,
    .services-card h2,
    .warning-card h2,
    .contact-card h2 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-sm);
    }
    
    .features-list {
        gap: var(--space-sm);
    }
    
    .feature-item {
        padding: var(--space-xs);
        gap: var(--space-sm);
    }
    
    .feature-icon {
        font-size: var(--font-size-lg);
    }
    
    .countries-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .country-item {
        gap: var(--space-xs);
        padding: var(--space-sm);
    }
    
    .country-item img {
        width: 24px;
        height: 18px;
    }
    
    .country-item span {
        font-size: 10px;
    }
    
    .countries-more {
        font-size: var(--font-size-xs);
    }
    
    .services-showcase {
        gap: var(--space-xs);
    }
    
    .service-tag {
        padding: var(--space-xs) var(--space-sm);
        font-size: var(--font-size-xs);
    }
    
    .warning-content {
        gap: var(--space-sm);
    }
    
    .warning-content p {
        font-size: var(--font-size-xs);
        line-height: 1.4;
    }
}
/* Live Indicator */
.live-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: livePulse 2s infinite;
}

.live-text {
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Mobile Live Indicator */
@media (max-width: 768px) {
    .live-indicator {
        padding: var(--space-xs) var(--space-sm);
    }
    
    .live-text {
        font-size: 10px;
    }
    
    .live-dot {
        width: 6px;
        height: 6px;
    }
}
/* VIP Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: modalFadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    max-width: 450px;
    width: 90%;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-xl) var(--space-md);
    border-bottom: 1px solid var(--border-light);
}

.modal-header h3 {
    font-size: var(--font-size-lg);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: var(--font-size-xl);
    color: var(--text-tertiary);
    cursor: pointer;
    padding: var(--space-xs);
    border-radius: var(--radius);
    transition: var(--transition-base);
}

.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.modal-body {
    padding: var(--space-lg) var(--space-xl);
    text-align: center;
}

.modal-icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-md);
}

.modal-body p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-md);
    font-size: var(--font-size-sm);
}

.modal-body p strong {
    color: var(--text-primary);
}

.vip-benefits {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(52, 211, 153, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    text-align: left;
}

.vip-benefits h4 {
    color: var(--primary);
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    text-align: center;
}

.vip-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vip-benefits li {
    padding: var(--space-xs) 0;
    color: var(--text-secondary);
    font-size: var(--font-size-xs);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.modal-actions {
    display: flex;
    gap: var(--space-sm);
    flex-direction: column;
    margin-top: var(--space-lg);
}

.modal-btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-sm);
    font-weight: 700;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: var(--space-md);
        max-height: 75vh;
    }
    
    .modal-header,
    .modal-body {
        padding: var(--space-md);
    }
    
    .vip-benefits {
        padding: var(--space-md);
        margin: var(--space-md) 0;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .modal-btn {
        padding: var(--space-sm) var(--space-md);
        font-size: var(--font-size-xs);
    }
}

/* Small Mobile Modal */
@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: var(--space-sm);
        max-height: 80vh;
        border-radius: var(--radius-lg);
    }
    
    .modal-header {
        padding: var(--space-sm) var(--space-md);
    }
    
    .modal-header h3 {
        font-size: var(--font-size-base);
    }
    
    .modal-close {
        font-size: var(--font-size-lg);
        padding: var(--space-xs);
    }
    
    .modal-body {
        padding: var(--space-sm) var(--space-md);
    }
    
    .modal-icon {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--space-sm);
    }
    
    .modal-body p {
        font-size: var(--font-size-xs);
        margin-bottom: var(--space-sm);
        line-height: 1.4;
    }
    
    .vip-benefits {
        padding: var(--space-sm);
        margin: var(--space-sm) 0;
        border-radius: var(--radius);
    }
    
    .vip-benefits h4 {
        font-size: var(--font-size-sm);
        margin-bottom: var(--space-xs);
    }
    
    .vip-benefits li {
        padding: 2px 0;
        font-size: 11px;
        gap: var(--space-xs);
    }
    
    .modal-actions {
        margin-top: var(--space-sm);
        gap: var(--space-xs);
    }
    
    .modal-btn {
        padding: var(--space-xs) var(--space-sm);
        font-size: 11px;
        border-radius: var(--space-sm);
    }
}
/* Hero Notice */
.hero-notice {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-xl);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-notice p {
    color: var(--text-inverse);
    font-size: var(--font-size-sm);
    margin: 0;
    opacity: 0.9;
}

.hero-notice a {
    color: var(--primary-light);
    text-decoration: underline;
    font-weight: 700;
    transition: var(--transition-base);
}

.hero-notice a:hover {
    color: var(--accent);
}
/* Extra Small Mobile (320px - 375px) */
@media (max-width: 375px) {
    .container {
        padding: 0 8px;
    }
    
    .header-content {
        padding: 8px 0;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .logo {
        font-size: 16px;
        flex-shrink: 0;
    }
    
    .logo-svg {
        height: 24px;
    }
    
    nav {
        gap: 4px;
        flex-shrink: 1;
        min-width: 0;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 4px;
    }
    
    nav::-webkit-scrollbar {
        display: none;
    }
    
    .nav-link {
        padding: 4px 6px;
        font-size: 11px;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .hero-content {
        padding: 24px 8px;
    }
    
    .hero h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .hero .subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .hero-notice {
        padding: 8px;
        margin-top: 12px;
    }
    
    .hero-notice p {
        font-size: 11px;
    }
    
    .countries-tabs {
        padding: 4px;
        margin: 16px 0;
    }
    
    .tab {
        padding: 6px 8px;
        font-size: 10px;
    }
    
    .number-card {
        padding: 12px;
    }
    
    .phone-number {
        font-size: 16px;
        word-break: break-all;
    }
    
    .flag {
        width: 20px;
        height: 15px;
    }
    
    .country-name {
        font-size: 10px;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-card {
        padding: 8px;
        font-size: 10px;
    }
    
    .faq-section h2 {
        font-size: 20px;
    }
    
    .faq-question {
        padding: 8px 12px;
    }
    
    .faq-question h3 {
        font-size: 12px;
    }
    
    .faq-answer p {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .page-header h1 {
        font-size: 20px;
    }
    
    .page-header .flag-large {
        width: 32px;
        height: 24px;
    }
    
    .phone-large {
        font-size: 24px;
        word-break: break-all;
    }
    
    .number-meta {
        font-size: 14px;
    }
    
    .flag-large {
        width: 40px;
        height: 30px;
    }
    
    .sms-header {
        grid-template-columns: 60px 1fr 60px;
        gap: 8px;
        padding: 4px 8px;
        font-size: 9px;
    }
    
    .sms-row {
        grid-template-columns: 60px 1fr 60px;
        gap: 8px;
        padding: 8px;
    }
    
    .sms-service {
        font-size: 11px;
    }
    
    .sms-text {
        font-size: 11px;
        word-break: break-word;
    }
    
    .sms-time {
        font-size: 9px;
    }
    
    .modal-content {
        width: 100%;
        margin: 4px;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 8px 12px;
    }
    
    .modal-header h3 {
        font-size: 14px;
    }
    
    .modal-body {
        padding: 8px 12px;
    }
    
    .modal-icon {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .modal-body p {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .vip-benefits {
        padding: 8px;
        margin: 8px 0;
    }
    
    .vip-benefits h4 {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .vip-benefits li {
        font-size: 10px;
        padding: 1px 0;
    }
    
    .modal-btn {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .content-block {
        padding: 12px;
    }
    
    .content-block h2 {
        font-size: 16px;
    }
    
    .content-block p,
    .content-block li {
        font-size: 11px;
    }
    
    .contact-method,
    .hero-card,
    .features-card,
    .countries-card,
    .services-card,
    .warning-card,
    .contact-card {
        padding: 12px;
    }
    
    .card-icon {
        font-size: 28px;
    }
    
    .contact-icon {
        font-size: 32px;
    }
    
    .countries-showcase {
        grid-template-columns: 1fr 1fr;
    }
    
    .country-item img {
        width: 20px;
        height: 15px;
    }
    
    .country-item span {
        font-size: 9px;
    }
    
    .service-tag {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .footer-content {
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .services-list span {
        padding: 4px 6px;
        font-size: 9px;
    }
}

/* SEO Content Section */
.seo-content {
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.seo-block {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-3xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.seo-block h2 {
    color: var(--text-primary);
    font-size: var(--font-size-2xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

.seo-block h3 {
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-md);
}

.seo-block p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: var(--font-size-base);
    margin-bottom: var(--space-md);
}

.seo-block ul {
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
}

.seo-block li {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: var(--font-size-base);
    margin-bottom: var(--space-sm);
}

.seo-block li::marker {
    color: var(--primary);
}

.seo-block a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-base);
}

.seo-block a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.seo-block strong {
    color: var(--text-primary);
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.benefit-item {
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.benefit-item h3 {
    color: var(--primary);
    font-size: var(--font-size-base);
    font-weight: 700;
    margin: 0 0 var(--space-sm) 0;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin: 0;
}

/* Mobile SEO Content */
@media (max-width: 768px) {
    .seo-block {
        padding: var(--space-lg);
        margin-bottom: var(--space-lg);
    }
    
    .seo-block h2 {
        font-size: var(--font-size-xl);
    }
    
    .seo-block h3 {
        font-size: var(--font-size-base);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .seo-content {
        margin-top: var(--space-xl);
        margin-bottom: var(--space-xl);
    }
    
    .seo-block {
        padding: var(--space-md);
        margin-bottom: var(--space-md);
    }
    
    .seo-block h2 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-sm);
    }
    
    .seo-block h3 {
        font-size: var(--font-size-base);
        margin-top: var(--space-sm);
    }
    
    .seo-block p,
    .seo-block li {
        font-size: var(--font-size-sm);
    }
    
    .benefit-item {
        padding: var(--space-md);
    }
}
