/* ================================
   ИМПОРТ ШРИФТОВ
   ================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ================================
   CSS ПЕРЕМЕННЫЕ
   ================================ */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-bg: #0a0a1a;
    --dark-card: rgba(20, 20, 40, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #b8b8d4;
    --text-muted: #7a7a9e;
}

/* ================================
   БАЗОВЫЕ СТИЛИ
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a1a;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Анимированный градиентный фон */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(102, 126, 234, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(118, 75, 162, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(240, 147, 251, 0.15) 0%, transparent 60%);
    animation: gradientMove 30s ease infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientMove {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(5%, -5%) scale(1.1);
    }
    66% {
        transform: translate(-5%, 5%) scale(0.9);
    }
}

/* Сетка на фоне */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 60s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ================================
   ПЕРЕКЛЮЧАТЕЛЬ ТЕМЫ
   ================================ */
.theme-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    background: var(--dark-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 30px;
    border-radius: 100px;
    cursor: pointer;
    z-index: 1000;
    font-size: 1.2rem;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.theme-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 15px 50px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

/* Светлая тема */
body.light {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8eaf6 100%);
    color: #1a1a2e;
}

body.light::before {
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
}

body.light::after {
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.05) 1px, transparent 1px);
}

body.light .theme-toggle {
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a2e;
}

body.light .card,
body.light .cta-box {
    background: rgba(255, 255, 255, 0.8);
    color: #1a1a2e;
}

body.light .hero-subtitle,
body.light .hero-description,
body.light .card p,
body.light .card-description {
    color: #4a5568;
}

/* ================================
   HERO СЕКЦИЯ
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 100px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Логотип бейдж */
.logo-badge {
    display: inline-block;
    padding: 12px 28px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: 'Space Grotesk', monospace;
    animation: fadeInDown 1s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Главный заголовок */
.hero-title {
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1;
    letter-spacing: -0.03em;
    animation: fadeInUp 1s ease 0.2s backwards;
    font-family: 'Outfit', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    display: inline-block;
    position: relative;
}

.gradient-text::before {
    content: 'VPN Power';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(30px);
    opacity: 0.5;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Подзаголовки */
.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease 0.4s backwards;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s backwards;
}

/* Кнопки Hero */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
}

/* Главная кнопка */
.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 
        0 10px 40px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #764ba2, #f093fb);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 50px rgba(102, 126, 234, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover::before {
    left: 0;
}

/* Вторичная кнопка */
.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Стрелка */
.arrow {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-primary:hover .arrow,
.btn-secondary:hover .arrow {
    transform: translateX(5px);
}

/* Фичи Hero */
.hero-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s backwards;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--dark-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-badge:hover {
    transform: translateY(-3px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.feature-badge .icon::before {
    content: '•';
    color: #667eea;
    font-size: 1.5rem;
    font-weight: 900;
}

/* ================================
   АНИМИРОВАННЫЙ ГЛОБУС
   ================================ */
.hero-visual {
    position: fixed;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0.15;
    z-index: 0;
}

.globe-wrapper {
    width: 700px;
    height: 700px;
    position: relative;
}

.globe {
    width: 100%;
    height: 100%;
    position: relative;
    animation: floatGlobe 10s ease-in-out infinite;
}

@keyframes floatGlobe {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(5deg); }
}

.globe-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rotateGlobe 40s linear infinite;
    filter: drop-shadow(0 0 60px rgba(102, 126, 234, 0.4));
}

@keyframes rotateGlobe {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Орбиты */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.1);
}

.orbit-1 {
    width: 400px;
    height: 400px;
    animation: rotateOrbit 15s linear infinite;
}

.orbit-2 {
    width: 550px;
    height: 550px;
    animation: rotateOrbit 25s linear infinite reverse;
}

.orbit-3 {
    width: 700px;
    height: 700px;
    animation: rotateOrbit 35s linear infinite;
}

@keyframes rotateOrbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ================================
   СЕКЦИЯ КАРТОЧЕК
   ================================ */
.cards-section {
    padding: 120px 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    font-family: 'Outfit', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

/* ================================
   КАРТОЧКИ
   ================================ */
.card {
    background: var(--dark-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 30px 80px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.card-icon::before {
    content: '';
    display: block;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.card h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.01em;
    font-family: 'Outfit', sans-serif;
}

.card-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* ================================
   КАРТОЧКА ТАРИФОВ
   ================================ */
.card-pricing {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.pricing-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid var(--glass-border);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.price-value {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.price-period {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
}

.price-extra {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.extra-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    font-family: 'Outfit', sans-serif;
}

.extra-text {
    color: var(--text-muted);
    font-size: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 14px 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    font-weight: 500;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li:hover {
    padding-left: 10px;
    color: var(--text-primary);
}

/* ================================
   КАРТОЧКА ПРИЛОЖЕНИЙ
   ================================ */
.card-apps {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1), rgba(245, 87, 108, 0.1));
}

.apps-buttons {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 30px 0;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.app-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.app-icon {
    font-size: 3rem;
    filter: grayscale(0.3);
}

.app-info strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.app-info small {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.card-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    text-align: center;
    margin-top: 25px;
}

/* ================================
   КАРТОЧКА СЕРВЕРА
   ================================ */
.card-server {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(0, 242, 254, 0.1));
}

.server-location {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.flag {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.location-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ade80;
    font-family: 'Space Grotesk', sans-serif;
}

.server-stats {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: var(--glass-bg);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.stat-icon::before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
}

.stat-info strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 800;
    color: #667eea;
    font-family: 'Outfit', sans-serif;
}

.stat-info small {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.server-badge {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    font-family: 'Space Grotesk', monospace;
}

/* ================================
   CTA СЕКЦИЯ
   ================================ */
.cta-section {
    padding: 120px 20px;
    position: relative;
    z-index: 1;
}

.cta-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
    background: var(--dark-card);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-box h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 25px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-family: 'Outfit', sans-serif;
}

.cta-box > p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-note {
    margin-top: 25px;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ================================

/* ================================
   ФУТЕР
   ================================ */
.footer {
    padding: 80px 0 40px;
    background: rgba(10,10,26,0.9);
    border-top: 1px solid rgba(102,126,234,0.2);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h3 {
    font-size: 2rem;
    background: linear-gradient(90deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-links a {
    color: #b0b0ff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
}
.footer-links a:hover { color: #667eea; }
.footer-bottom {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Анимации */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Адаптив */
@media (max-width: 968px) {
    .hero { flex-direction: column; text-align: center; padding: 120px 0; }
    .hero-content { max-width: 100%; }
    .hero-title { font-size: 4rem; }
    .hero-subtitle { font-size: 1.6rem; }
    .globe-wrapper { width: 300px; height: 300px; margin-top: 50px; }
    .globe-inner { font-size: 6rem; }
}

@media (max-width: 640px) {
    .hero-title { font-size: 3.2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-large { width: 100%; justify-content: center; }
    .section-title { font-size: 2.2rem; }
    .cards-grid { grid-template-columns: 1fr; }
}