﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

:root {
    --primary-gradient: linear-gradient(135deg, #00c770 0%, #0d9b5f 100%);
    --secondary-gradient: linear-gradient(135deg, #7fba95 0%, #00c770 100%);
    --dark-bg: #071410;
    --card-bg: #152b1e;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --accent-color: #00c770;
    --accent-light: #7fba95;
    --accent-medium: #00c770;
    --accent-dark: #0d9b5f;
    --accent-rgb: 0, 199, 112;
    --accent-soft-rgb: 127, 186, 149;
    --surface-rgb: 21, 43, 30;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background:
        radial-gradient(circle at 20% 18%, rgba(var(--accent-rgb), 0.18), transparent 24%),
        radial-gradient(circle at 78% 12%, rgba(var(--accent-rgb), 0.14), transparent 22%),
        radial-gradient(circle at 84% 72%, rgba(var(--accent-rgb), 0.12), transparent 26%),
        radial-gradient(circle at 12% 78%, rgba(var(--accent-rgb), 0.1), transparent 24%),
        linear-gradient(180deg, #071410 0%, #0d1f17 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden !important;
    position: relative;
    max-width: 100vw;
    width: 100%;
}

body.telegram-modal-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 20, 16, 0.82);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    max-width: 100%;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.24) 0%, rgba(13, 155, 95, 0.36) 100%);
    border: 1px solid rgba(var(--accent-soft-rgb), 0.18);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 13px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 45%, rgba(0, 0, 0, 0.08) 100%);
}

.brand-mark__glyph {
    position: relative;
    z-index: 1;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
    color: #f4fff8;
    text-shadow: 0 10px 20px rgba(var(--accent-rgb), 0.2);
}

.brand-mark--hero {
    width: 72px;
    height: 72px;
    border-radius: 24px;
}

.brand-mark--hero::before {
    border-radius: 23px;
}

.brand-mark--hero .brand-mark__glyph {
    font-size: 44px;
}

.logo-text {
    letter-spacing: 0.04em;
}


.nav {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-shrink: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--text-primary);
}

.nav-telegram {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00c770 0%, #0d9b5f 100%);
    border-radius: 50%;
    color: white !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-telegram:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.3);
    background: linear-gradient(135deg, #0fcf7a 0%, #00c770 100%);
}

.nav-telegram svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.nav-btn {
    padding: 10px 20px;
    background: var(--primary-gradient);
    border-radius: 8px;
    border: 1px solid transparent;
    color: var(--text-primary) !important;
    box-shadow: 0 10px 26px rgba(var(--accent-rgb), 0.22), 0 0 0 1px rgba(var(--accent-soft-rgb), 0.12) inset;
    transition: none !important;
    transform: none !important;
    animation: none !important;
    will-change: auto !important;
    flex-shrink: 0;
}

.nav-btn:hover {
    background: var(--primary-gradient) !important;
    transform: none !important;
    box-shadow: 0 14px 30px rgba(var(--accent-rgb), 0.28), 0 0 0 1px rgba(var(--accent-soft-rgb), 0.16) inset !important;
}

.nav-btn:active {
    transform: none !important;
    animation: none !important;
}

.nav-btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(var(--accent-soft-rgb), 0.22);
    box-shadow: none;
    color: var(--text-primary) !important;
}

.nav-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(var(--accent-soft-rgb), 0.35);
}

/* Hero Section */
.hero {
    padding: 102px 0 24px;
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 640px) {
    .hero {
        padding: 88px 0 14px;
        min-height: auto;
    }

    .hero > .container {
        display: flex;
        flex-direction: column;
    }
}

.hero-content {
    text-align: center;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

@media (max-width: 640px) {
    .hero-content {
        order: 1;
        margin-bottom: 12px;
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.45;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    max-width: 940px;
    margin: 10px auto 12px;
    padding: 0;
}

@media (max-width: 640px) {
    .hero-stats {
        order: 2;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 8px;
        padding: 0;
    }
}

.hero-stat-item {
    text-align: center;
    min-width: 110px;
}

.hero-stat-value {
    font-size: 32px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    line-height: 1;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Globe */
.globe-container {
    position: relative;
    width: 450px;
    height: 450px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 640px) {
    .hero-stat-item {
        min-width: 0;
    }

    .hero-stat-value {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .hero-stat-label {
        font-size: 10px;
        letter-spacing: 0.2px;
    }
}

@media (max-width: 640px) {
    .globe-container {
        order: 3;
        width: min(88vw, 320px);
        height: min(88vw, 320px);
        margin: 0 auto 6px;
    }

    .locations-list {
        order: 5;
    }
}

#globeCanvas {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    cursor: grab;
    user-select: none;
}

#globeCanvas:active {
    cursor: grabbing;
}

.telegram-modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        radial-gradient(circle at top, rgba(var(--accent-rgb), 0.14), transparent 42%),
        rgba(5, 10, 20, 0.82);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 10001;
}

.telegram-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.telegram-modal {
    position: relative;
    width: min(100%, 430px);
    padding: 30px 32px 26px;
    border-radius: 24px;
    border: 1px solid rgba(80, 125, 255, 0.14);
    background:
        linear-gradient(180deg, rgba(20, 24, 40, 0.98) 0%, rgba(9, 14, 26, 0.98) 100%);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    transform: translateY(14px) scale(0.96);
    transition: transform 0.28s ease;
}

.telegram-modal-overlay.active .telegram-modal {
    transform: translateY(0) scale(1);
}

.telegram-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: 0;
    padding: 0;
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.telegram-modal__close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(90deg);
}

.telegram-modal__close svg {
    width: 20px;
    height: 20px;
    display: block;
    margin: auto;
}

.telegram-modal__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid rgba(18, 184, 134, 0.28);
    background: linear-gradient(180deg, rgba(0, 143, 122, 0.22), rgba(0, 95, 85, 0.18));
    box-shadow: 0 0 24px rgba(0, 143, 122, 0.18);
}

.telegram-modal__icon svg {
    width: 26px;
    height: 26px;
    color: #24e2c4;
}

.telegram-modal__title {
    margin: 0;
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}

.telegram-modal__subtitle {
    margin: 8px 0 24px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.36);
}

.telegram-modal__message {
    margin: -12px 0 24px;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.58);
}

.telegram-modal__steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.telegram-modal__step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.telegram-modal__step:hover {
    transform: translateY(-2px);
    border-color: rgba(36, 226, 196, 0.24);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.telegram-modal__step-index {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    color: #ebfdff;
    background: linear-gradient(180deg, rgba(6, 188, 159, 0.22), rgba(5, 111, 100, 0.26));
    border: 1px solid rgba(36, 226, 196, 0.3);
}

.telegram-modal__step--secondary .telegram-modal__step-index {
    color: rgba(255, 255, 255, 0.82);
    background: linear-gradient(180deg, rgba(111, 125, 149, 0.16), rgba(68, 77, 95, 0.18));
    border-color: rgba(148, 163, 184, 0.22);
}

.telegram-modal__step-content {
    min-width: 0;
    flex: 1;
}

.telegram-modal__step-title {
    display: block;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.telegram-modal__step-description {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.42);
}

.telegram-modal__step-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.55);
}

.telegram-modal__divider {
    width: 1px;
    height: 18px;
    margin: 2px auto;
    background: linear-gradient(180deg, rgba(36, 226, 196, 0), rgba(36, 226, 196, 0.7), rgba(36, 226, 196, 0));
}

.telegram-modal__hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 24px auto 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.2s ease;
}

.telegram-modal__hint:hover {
    color: rgba(255, 255, 255, 0.7);
}

.telegram-modal__hint svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 640px) {
    .telegram-modal-overlay {
        padding: 16px;
    }

    .telegram-modal {
        padding: 28px 18px 24px;
        border-radius: 22px;
    }

    .telegram-modal__title {
        font-size: 22px;
    }

    .telegram-modal__subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .telegram-modal__message {
        margin-top: -10px;
        margin-bottom: 20px;
        font-size: 13px;
    }

    .telegram-modal__step {
        gap: 14px;
        padding: 14px;
    }

    .telegram-modal__step-title {
        font-size: 16px;
    }

    .telegram-modal__step-description {
        font-size: 13px;
    }

    .telegram-modal__hint {
        font-size: 13px;
    }
}

.globe-glow {
    display: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

/* Locations List */
.locations-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
    .locations-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-bottom: 20px;
        gap: 6px;
    }
}

.location-card {
    background: rgba(var(--surface-rgb), 0.62);
    backdrop-filter: blur(10px);
    padding: 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(var(--accent-rgb), 0.14);
    transition: all 0.3s ease;
    cursor: pointer;
}

.location-card:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--accent-rgb), 0.42);
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.18);
}

.location-flag {
    width: 48px;
    height: 36px;
    border-radius: 6px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Globe Tooltip */
.globe-tooltip {
    position: fixed;
    background: rgba(15, 20, 45, 0.98);
    backdrop-filter: blur(20px);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(var(--accent-rgb), 0.32);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    transform: translate(15px, -50%);
    max-width: 280px;
}

.globe-tooltip.visible {
    opacity: 1;
}

.tooltip-flag {
    width: 36px;
    height: 27px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.tooltip-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tooltip-country {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.tooltip-city {
    font-size: 12px;
    color: var(--text-secondary);
}

.tooltip-ping {
    font-size: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}

/* Tooltip ping colors */
.tooltip-ping.ping-excellent {
    color: #10b981;
}

.tooltip-ping.ping-good {
    color: #f59e0b;
}

.tooltip-ping.ping-poor {
    color: #ef4444;
}

.tooltip-ping-unit {
    font-size: 12px;
    color: var(--text-secondary);
    margin-left: 2px;
}

.location-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.location-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.location-city {
    font-size: 12px;
    color: var(--text-secondary);
}

.location-ping {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.ping-value {
    font-size: 24px;
    font-weight: 700;
    min-width: 40px;
    text-align: right;
    transition: color 0.3s ease;
}

/* Ping color indicators */
.ping-value.ping-excellent {
    color: #10b981;
}

.ping-value.ping-good {
    color: #f59e0b;
}

.ping-value.ping-poor {
    color: #ef4444;
}

.ping-unit {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin: 0 auto 12px;
}

@media (max-width: 640px) {
    .hero-cta {
        order: 4;
        width: 100%;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .hero-auth-actions {
        flex-direction: column;
    }
}

.cta-button {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.hero-auth-promo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 580px;
    text-align: center;
}

.hero-auth-badge {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.45;
    font-weight: 400;
}

.hero-auth-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

.cta-button.primary {
    background: var(--primary-gradient);
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.32);
}

.hero-primary-cta {
    position: relative;
    min-width: min(100%, 240px);
    justify-content: center;
    padding: 17px 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 18px;
    box-shadow: 0 24px 56px rgba(var(--accent-rgb), 0.32), 0 0 0 1px rgba(var(--accent-soft-rgb), 0.14) inset;
    animation: hero-cta-glow 2.8s ease-in-out infinite;
}

.hero-primary-cta:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 28px 60px rgba(var(--accent-rgb), 0.36), 0 0 0 1px rgba(var(--accent-soft-rgb), 0.18) inset;
}

@keyframes hero-cta-glow {
    0%, 100% {
        box-shadow: 0 20px 48px rgba(var(--accent-rgb), 0.24), 0 0 0 1px rgba(var(--accent-soft-rgb), 0.12) inset;
    }
    50% {
        box-shadow: 0 28px 72px rgba(var(--accent-soft-rgb), 0.34), 0 0 0 1px rgba(var(--accent-soft-rgb), 0.2) inset;
    }
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(var(--accent-soft-rgb), 0.2);
}

.cta-button.secondary:hover {
    border-color: rgba(var(--accent-rgb), 0.42);
    background: rgba(var(--accent-rgb), 0.08);
}

.hero-secondary-cta {
    min-width: min(100%, 240px);
    justify-content: center;
    padding: 17px 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

/* Features Section */
.features {
    padding: 44px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0d1f17 100%);
}

@media (max-width: 640px) {
    .features {
        padding: 24px 0 12px;
    }
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

@media (max-width: 640px) {
    .section-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-auth-badge {
        font-size: 16px;
    }

    .hero-primary-cta {
        width: 100%;
        min-width: 0;
        padding: 14px 18px;
        font-size: 16px;
        border-radius: 16px;
    }

    .hero-secondary-cta {
        width: 100%;
        min-width: 0;
        padding: 14px 18px;
        font-size: 16px;
        border-radius: 16px;
    }

    .hero-stat-item {
        min-width: 0;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-rgb), 0.26);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    margin-bottom: 12px;
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    stroke: url(#iconGradient);
    stroke-width: 1.5;
}

/* Gradient for icons */
.feature-icon svg {
    stroke: #00c770;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Stats Section - Hidden, moved to hero */
.stats {
    display: none;
}

/* Pricing Section */
.pricing {
    padding: 28px 0;
    background: var(--dark-bg);
}

@media (max-width: 640px) {
    .pricing {
        padding: 16px 0;
    }
}

/* Общие характеристики */
.pricing-features-common {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 16px;
    margin: 0 auto 32px;
    max-width: 800px;
    border: 1px solid rgba(var(--accent-rgb), 0.18);
}

.pricing-features-common h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    text-align: center;
}

.pricing-features-common ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.pricing-features-common li {
    color: var(--text-secondary);
    font-size: 15px;
}

.pricing-extra-note {
    text-align: center;
    color: var(--accent-medium);
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 640px) {
    .pricing-features-common {
        padding: 16px;
        margin-bottom: 16px;
        border-radius: 12px;
    }
    
    .pricing-features-common h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .pricing-features-common ul {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .pricing-features-common li {
        font-size: 13px;
    }
    
    .pricing-extra-note {
        font-size: 12px;
    }
    
    .plan-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .plan-name {
        font-size: 18px;
    }
    
    .feature-item {
        font-size: 11px;
        padding: 4px 0;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .price-period {
        font-size: 12px;
    }
    
    .plan-button {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .period-option {
        padding: 6px 8px;
    }
    
    .period-duration {
        font-size: 11px;
    }
    
    .period-amount {
        font-size: 13px;
        min-width: 45px;
    }
    
    .period-select {
        padding: 4px 10px;
        font-size: 10px;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Компактные карточки с ценами */
.pricing-card-compact {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card-compact:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-rgb), 0.26);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.pricing-card-compact.featured {
    border-color: rgba(var(--accent-rgb), 0.42);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08) 0%, rgba(26, 74, 46, 0.24) 100%);
}

.price-per-month {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.pricing-card {
    background: var(--card-bg);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--accent-rgb), 0.42);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    border-color: rgba(var(--accent-rgb), 0.42);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08) 0%, rgba(26, 74, 46, 0.24) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 13px;
}

.pricing-price {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.price-value {
    font-size: 48px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-currency {
    font-size: 28px;
    color: var(--text-secondary);
    font-weight: 700;
}

.price-period {
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-extra {
    color: var(--accent-medium) !important;
    font-weight: 600;
    font-size: 13px !important;
}

.pricing-button {
    width: 100%;
    padding: 14px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.32);
}

/* New Pricing Plans Layout - Compact */
.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-plan {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-plan:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-rgb), 0.26);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.pricing-plan.featured-plan {
    border-color: rgba(var(--accent-rgb), 0.42);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.06) 0%, rgba(26, 74, 46, 0.2) 100%);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 4px 14px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.32);
}

.plan-header {
    text-align: center;
    margin-bottom: 16px;
}

.plan-icon {
    margin-bottom: 8px;
    line-height: 1;
}

.plan-icon svg {
    width: 36px;
    height: 36px;
    stroke: #00c770;
    stroke-width: 1.5;
}

.plan-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 0;
    color: var(--text-primary);
}

.plan-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.3;
}

.plan-features {
    flex: 1;
    margin-bottom: 16px;
}

.feature-item {
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.plan-price-block {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-price {
    margin-bottom: 12px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: var(--text-secondary);
}

.plan-button {
    width: 100%;
    padding: 10px 20px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    box-shadow: 0 12px 28px rgba(var(--accent-rgb), 0.22), 0 0 0 1px rgba(var(--accent-soft-rgb), 0.12) inset;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.3);
}

/* Standard Plan Periods - Compact */
.plan-periods {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.period-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.period-option:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(var(--accent-rgb), 0.26);
}

.period-option.highlight {
    border-color: rgba(var(--accent-rgb), 0.42);
    background: rgba(var(--accent-rgb), 0.06);
}

.period-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.period-duration {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.period-save {
    font-size: 11px;
    color: var(--accent-medium);
    font-weight: 500;
}

.period-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.period-amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    min-width: 60px;
    text-align: right;
}

.period-select {
    padding: 6px 16px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(var(--accent-rgb), 0.2), 0 0 0 1px rgba(var(--accent-soft-rgb), 0.12) inset;
}

.period-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(var(--accent-rgb), 0.32);
}

/* Footer */
.footer {
    background: #071410;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 64px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.footer-telegram {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #00c770 0%, #0d9b5f 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 16px;
    box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.22);
}

.footer-telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.34);
    background: linear-gradient(135deg, #0fcf7a 0%, #00c770 100%);
}

.footer-telegram svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
}

.telegram-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

.telegram-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.telegram-subscribers {
    font-size: 12px;
    opacity: 0.85;
    font-weight: 500;
}

.subscriber-count {
    font-size: 12px;
    opacity: 0.7;
    font-weight: 500;
    margin-left: 4px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1200px) {
    .locations-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-features-common ul {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .pricing-plans {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .pricing-plan {
        padding: 16px;
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 42px;
    }
    
    .globe-container {
        width: 420px;
        height: 420px;
    }
    
    .header .container {
        padding: 14px 20px;
    }
    
    .logo {
        font-size: 20px;
        gap: 10px;
    }
    
    .logo-icon.brand-mark {
        width: 32px;
        height: 32px;
        border-radius: 12px;
    }

    .logo-icon.brand-mark::before {
        border-radius: 11px;
    }

    .logo-icon.brand-mark .brand-mark__glyph {
        font-size: 20px;
    }
    
    .nav {
        gap: 12px;
    }
    
    .nav > a {
        display: none;
    }

    .nav-actions {
        gap: 8px;
    }
    
    .nav-btn {
        padding: 8px 10px;
        font-size: 11px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .nav-btn:hover,
    .nav-btn:active {
        transform: none !important;
        animation: none !important;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .hero-stat-value {
        font-size: 28px;
    }
    
    .locations-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Тултип глобуса на планшетах */
    .globe-tooltip {
        font-size: 13px;
        padding: 10px 14px;
        gap: 10px;
        transform: translate(10px, -50%);
        max-width: calc(100vw - 80px);
    }
    
    .tooltip-flag {
        width: 32px;
        height: 24px;
        font-size: 24px;
    }
    
    .tooltip-country {
        font-size: 13px;
    }
    
    .tooltip-city {
        font-size: 11px;
    }
    
    .tooltip-ping {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    /* Компактные features для мобильных */
    .features {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-card {
        padding: 16px;
    }
    
    .feature-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .feature-card h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .feature-card p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    /* Компактные тарифы для мобильных */
    .pricing {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .pricing-features-common {
        padding: 20px;
        margin-bottom: 24px;
    }
    
    .pricing-features-common h3 {
        font-size: 18px;
    }
    
    .pricing-features-common ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .pricing-features-common li {
        font-size: 14px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .pricing-card-compact {
        padding: 16px;
    }
    
    .pricing-badge {
        font-size: 11px;
        padding: 3px 12px;
    }
    
    .pricing-header {
        margin-bottom: 16px;
    }
    
    .pricing-header h3 {
        font-size: 20px;
    }
    
    .pricing-price {
        margin-bottom: 16px;
    }
    
    .price-value {
        font-size: 40px;
    }
    
    .price-currency {
        font-size: 24px;
    }
    
    .pricing-features {
        margin-bottom: 16px;
    }
    
    .pricing-features li {
        padding: 6px 0;
        font-size: 13px;
    }
    
    .pricing-button {
        padding: 12px;
    }
    
    .plan-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .plan-name {
        font-size: 20px;
    }
    
    .feature-item {
        font-size: 12px;
        padding: 5px 0;
    }
    
    .price-amount {
        font-size: 32px;
    }
    
    .period-option {
        padding: 8px 10px;
    }
    
    .period-duration {
        font-size: 12px;
    }
    
    .period-amount {
        font-size: 14px;
        min-width: 50px;
    }
    
    .period-select {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .footer-telegram {
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 12px;
        gap: 10px;
    }
    
    .footer-telegram svg {
        width: 20px;
        height: 20px;
    }
    
    .telegram-title {
        font-size: 14px;
    }
    
    .telegram-subscribers {
        font-size: 11px;
    }
    
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .header .container {
        padding: 10px 12px;
    }
    
    .logo {
        font-size: 16px;
        gap: 6px;
        flex-shrink: 0;
    }
    
    .logo-icon.brand-mark {
        width: 24px;
        height: 24px;
        border-radius: 9px;
    }

    .logo-icon.brand-mark::before {
        border-radius: 8px;
    }

    .logo-icon.brand-mark .brand-mark__glyph {
        font-size: 15px;
    }

    .container {
        padding: 0 12px;
        max-width: 100%;
    }
    
    /* Footer links - одна колонка на мобильных */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Предотвращение выхода за границы */
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    * {
        max-width: 100vw;
    }
    
    /* Тултип глобуса на мобильных - рядом с точкой */
    .globe-tooltip {
        font-size: 12px;
        padding: 8px 12px;
        gap: 8px;
        transform: translate(10px, -50%) !important;
        max-width: calc(100vw - 60px);
    }
    
    .tooltip-flag {
        width: 28px;
        height: 21px;
        font-size: 21px;
    }
    
    .tooltip-country {
        font-size: 12px;
    }
    
    .tooltip-city {
        font-size: 10px;
    }
    
    .tooltip-ping {
        font-size: 15px;
    }
    
    .nav {
        gap: 6px;
        flex-shrink: 1;
    }
    
    .nav-actions {
        gap: 6px;
    }
    
    .nav-btn {
        padding: 5px 8px;
        font-size: 10px;
        white-space: nowrap;
        transition: none !important;
        transform: none !important;
        animation: none !important;
        max-width: fit-content;
    }
    
    .nav-btn:hover,
    .nav-btn:active {
        transform: none !important;
        animation: none !important;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.1;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .globe-container {
        width: 300px;
        height: 300px;
    }
    
    .hero-stats {
        gap: 8px;
        flex-wrap: wrap;
        padding: 8px 0;
    }
    
    .hero-stat-item {
        min-width: 70px;
    }
    
    .hero-stat-value {
        font-size: 20px;
    }
    
    .hero-stat-label {
        font-size: 10px;
    }
    
    .locations-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        width: calc(100% + 16px);
        margin-left: -8px;
        margin-right: -8px;
    }
    
    .location-card {
        display: grid;
        grid-template-columns: 24px minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        align-items: center;
        column-gap: 7px;
        row-gap: 2px;
        min-height: 0;
        padding: 9px 8px;
        border-radius: 14px;
        background: linear-gradient(180deg, rgba(21, 43, 30, 0.94) 0%, rgba(7, 20, 16, 0.98) 100%);
        border-color: rgba(120, 138, 168, 0.18);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    }
    
    .location-flag {
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 24px;
        height: 18px;
        font-size: 18px;
        border-radius: 4px;
        margin-top: 1px;
    }
    
    .location-name {
        grid-column: 2;
        grid-row: 1;
        font-size: 10px;
        font-weight: 700;
        line-height: 1.05;
        letter-spacing: 0.02em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .location-city {
        grid-column: 2;
        grid-row: 2;
        font-size: 8px;
        line-height: 1.05;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        opacity: 0.82;
    }
    
    .location-info {
        display: contents;
    }

    .location-ping {
        grid-column: 3;
        grid-row: 1 / span 2;
        display: inline-flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        width: auto;
        margin: 0;
        gap: 1px;
        padding: 4px 0 2px;
    }

    .ping-value {
        font-size: 15px;
        min-width: 0;
        text-align: right;
        line-height: 1;
    }

    .ping-unit {
        font-size: 8px;
        line-height: 1;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        opacity: 0.65;
    }

    /* Суперкомпактный features для маленьких экранов */
    .section-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .feature-card {
        padding: 10px;
        border-radius: 10px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .feature-card h3 {
        font-size: 13px;
        margin-bottom: 2px;
    }
    
    .feature-card p {
        font-size: 10px;
        line-height: 1.3;
    }
    
    /* Суперкомпактные карточки - сетка 2x2 */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .pricing-card-compact {
        padding: 12px 8px;
        border-radius: 12px;
    }
    
    .pricing-badge {
        font-size: 8px;
        padding: 2px 6px;
        top: -7px;
    }
    
    .pricing-header {
        margin-bottom: 8px;
    }
    
    .pricing-header h3 {
        font-size: 15px;
        margin-bottom: 2px;
        line-height: 1.2;
    }
    
    .price-per-month {
        font-size: 10px;
        margin-top: 2px;
    }
    
    .pricing-price {
        margin-bottom: 8px;
    }
    
    .price-value {
        font-size: 28px;
        line-height: 1;
    }
    
    .price-currency {
        font-size: 16px;
    }
    
    .pricing-button {
        padding: 8px 12px;
        font-size: 12px;
        width: 100%;
    }
    
    .footer-telegram {
        padding: 8px 16px;
        font-size: 13px;
        gap: 8px;
    }
    
    .footer-telegram svg {
        width: 18px;
        height: 18px;
    }
    
    .telegram-title {
        font-size: 13px;
    }
    
    .telegram-subscribers {
        font-size: 10px;
    }
    
    .subscriber-count {
        font-size: 11px;
    }

    
    .nav-actions {
        gap: 6px;
    }

    .nav-btn {
        padding: 5px 8px;
        font-size: 10px;
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .nav-btn:hover,
    .nav-btn:active {
        transform: none !important;
        animation: none !important;
    }
}

@media (max-width: 480px) {
    .hero .hero-primary-cta {
        padding: 14px 18px;
        font-size: 16px;
    }

    .hero .hero-secondary-cta {
        padding: 14px 18px;
        font-size: 16px;
    }

    .hero .hero-subtitle {
        font-size: 15px;
    }

    .hero .hero-stats {
        gap: 4px;
        padding: 0;
    }

    .hero .hero-stat-item {
        min-width: 0;
    }

    .hero .hero-stat-value {
        font-size: 16px;
    }

    .hero .hero-stat-label {
        font-size: 9px;
    }
}

