/* ============ CSS Variables ============ */
:root {
        --primary: #1e3a8a;
            --secondary: #3b82f6;
                --accent: #14b8a6;
                    --glass-bg: rgba(255, 255, 255, 0.05);
                        --glass-border: rgba(255, 255, 255, 0.1);
                            --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
                                --text-primary: #ffffff;
                                    --text-secondary: rgba(255, 255, 255, 0.7);
                                        --gradient-1: linear-gradient(135deg, #1e3a8a, #3b82f6);
                                            --gradient-2: linear-gradient(135deg, #14b8a6, #1e3a8a);
                                                --dark-bg: #0a1628;
                                                    --dark-bg-secondary: #0f1f3a;
                                                        --badge-glow: #14b8a6;
                                                            --card-hover: rgba(59, 130, 246, 0.2);
                                                                --orb-1-color: rgba(30, 58, 138, 0.3);
                                                                    --orb-2-color: rgba(59, 130, 246, 0.25);
                                                                        --orb-3-color: rgba(20, 184, 166, 0.2);
                                                                            --orb-4-color: rgba(30, 58, 138, 0.15);
                                                                                --navbar-bg: rgba(10, 22, 40, 0.9);
                                                                                    --drawer-bg: rgba(12, 25, 45, 0.9);
                                                                                        --footer-bg: rgba(10, 22, 40, 0.7);
                                                                                        }
}

/* ============ Reset & Base ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============ Disable Text Selection ============ */
* {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent;
}

input, textarea, [contenteditable="true"] {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ============ Animated Background ============ */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: var(--dark-bg);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float-orb 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--orb-1-color);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--orb-2-color);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--orb-3-color);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: var(--orb-4-color);
    top: 20%;
    right: 20%;
    animation-delay: -15s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(100px, 50px) scale(1.1); }
    50% { transform: translate(50px, -50px) scale(0.9); }
    75% { transform: translate(-50px, -100px) scale(1.05); }
}

/* ============ Glass Effect ============ */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

/* ============ Navigation ============ */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    padding: 0;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    top: 10px;
    background: var(--navbar-bg);
    backdrop-filter: blur(30px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.8rem;
    animation: rotate-slow 10s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 3px;
    gap: 2px;
}

.lang-btn {
    padding: 8px 14px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    background: transparent;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lang-btn.active {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.lang-btn:hover:not(.active) {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 2000;
    position: relative;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* ============ Mobile Drawer ============ */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    z-index: 1999;
    background: var(--drawer-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px 0 0 30px;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-drawer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 25px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
}

.drawer-logo .logo-icon {
    animation: rotate-slow 10s linear infinite;
}

.drawer-logo .logo-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.drawer-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.drawer-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.drawer-menu {
    list-style: none;
    padding: 20px 15px;
    flex: 1;
}

.drawer-menu li {
    margin-bottom: 5px;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    text-decoration: none;
    color: var(--text-secondary);
    border-radius: 14px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    margin-bottom: 2px;
}

.drawer-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(168, 85, 247, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 14px;
}

.drawer-link:hover::before,
.drawer-link.active::before {
    opacity: 1;
}

.drawer-link:hover,
.drawer-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(4px);
}

.drawer-link i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(108, 92, 231, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.drawer-link:hover i,
.drawer-link.active i {
    background: var(--gradient-1);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.drawer-link span {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drawer-footer {
    padding: 20px 25px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-lang-switch {
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    padding: 4px;
    gap: 2px;
    margin-bottom: 15px;
}

.drawer-lang-switch .lang-btn {
    flex: 1;
    padding: 10px 14px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    background: transparent;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.drawer-lang-switch .lang-btn.active {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.drawer-telegram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #0088cc, #006699);
    color: #fff;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.drawer-telegram-btn::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 ease;
}

.drawer-telegram-btn:hover::before {
    left: 100%;
}

.drawer-telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.3);
}

.drawer-telegram-btn i {
    font-size: 1.2rem;
}

/* ============ Hero Section ============ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
    text-align: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease;
}

.hero-badge i {
    color: var(--badge-glow);
    font-size: 0.9rem;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.4s both;
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 35px;
    animation: fadeInUp 1s ease 0.5s both;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    color: var(--text-primary);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.glass-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #006699);
}

.telegram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
}

.hero-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat-item {
    padding: 20px 30px;
    text-align: center;
    min-width: 140px;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 92, 231, 0.4);
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--text-secondary);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

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

/* ============ Section Headers ============ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============ Services Section ============ */
.services {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.service-card {
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(108, 92, 231, 0.5);
    box-shadow: 0 20px 50px var(--card-hover);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.service-tagline {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-details ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-details li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.service-details li:last-child {
    border-bottom: none;
}

.service-details li i {
    color: var(--accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.platform-list {
    margin-bottom: 20px;
}

.platform-item {
    padding: 12px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.platform-item i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.platform-item strong {
    color: var(--text-primary);
    margin-right: 5px;
}

.card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.card-tags span {
    padding: 5px 12px;
    background: rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid rgba(108, 92, 231, 0.3);
}

/* ============ More Services & Custom Button ============ */
.more-services {
    text-align: center;
    padding: 45px 30px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.more-services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.more-services-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.more-services-icon i {
    animation: pulse-icon 2s infinite;
}

.more-services h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.more-services p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.custom-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(0, 150, 220, 0.15));
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.custom-service-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0088cc, #006699);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
    z-index: -1;
}

.custom-service-btn:hover::before {
    opacity: 1;
}

.custom-service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 136, 204, 0.3);
    border-color: transparent;
}

.custom-service-btn .btn-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-service-btn .btn-icon-wrapper i {
    font-size: 1.1rem;
    color: #fff;
}

.custom-service-btn .fa-arrow-right {
    transition: transform 0.3s ease;
}

.custom-service-btn:hover .fa-arrow-right {
    transform: translateX(5px);
}

/* ============ About Me Section ============ */
.about-me {
    padding: 80px 20px;
    max-width: 850px;
    margin: 0 auto;
}

.about-me-container {
    display: flex;
    justify-content: center;
}

.about-me-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    width: 100%;
    gap: 0;
}

.about-me-card:hover {
    border-color: rgba(108, 92, 231, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Left Side - Avatar */
.about-me-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
    min-width: 200px;
}

.about-me-avatar-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-me-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #fff;
    position: relative;
    z-index: 2;
}

.about-me-avatar-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    border-bottom-color: var(--accent);
    animation: rotate-ring 3s linear infinite;
    z-index: 1;
    opacity: 0.7;
}

@keyframes rotate-ring {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-me-status-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px;
    background: rgba(0, 200, 100, 0.08);
    border: 1px solid rgba(0, 200, 100, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    color: #00c864;
    font-weight: 500;
    white-space: nowrap;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00c864;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 200, 100, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(0, 200, 100, 0); }
}

.about-me-social-links {
    display: flex;
    gap: 8px;
}

.about-me-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
}

.about-me-social-btn.telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
}

.about-me-social-btn.channel:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

/* Right Side - Info */
.about-me-right {
    flex: 1;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-me-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
}

.about-me-name .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-me-role {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-me-bio {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}

/* Stats */
.about-me-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-me-stat-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
}

.about-me-stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-me-stat-text {
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-me-stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.08);
}

/* Skills Tags */
.about-me-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-me-skill-tag {
    padding: 6px 13px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: default;
    white-space: nowrap;
}

.about-me-skill-tag:hover {
    background: rgba(108, 92, 231, 0.15);
    border-color: rgba(108, 92, 231, 0.4);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* ============ About Section (Why Choose Us) ============ */
.about {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.about-card {
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 92, 231, 0.3);
}

.about-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card h3 {
    margin-bottom: 10px;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============ Contact Section ============ */
.contact {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.contact-card {
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.contact-card h3 {
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ============ Footer ============ */
.footer {
    margin: 40px 20px;
    padding: 40px;
    border-radius: 20px;
    background: var(--footer-bg);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-brand h3 {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    width: 100%;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-social a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: #0088cc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ============ Floating Telegram Button ============ */
.floating-telegram {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    z-index: 999;
    animation: pulse-btn 2s infinite;
    background: linear-gradient(135deg, #0088cc, #006699);
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-telegram .tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-telegram:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.floating-telegram:hover {
    transform: scale(1.1);
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(0, 136, 204, 0); }
}

/* ============ Ripple Effect ============ */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-anim {
    to { transform: scale(4); opacity: 0; }
}

/* ============ Responsive ============ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 10px;
        width: 95%;
        border-radius: 25px;
    }

    .nav-container {
        padding: 10px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .navbar .lang-switch {
        display: none;
    }

    .hero {
        padding: 110px 15px 50px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-description {
        font-size: 0.85rem;
        max-width: 100%;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .stat-item {
        width: 100%;
        max-width: 250px;
        padding: 15px 20px;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 20px;
    }

    /* About Me Mobile */
    .about-me-card {
        flex-direction: column;
    }

    .about-me-left {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        padding: 25px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        flex-wrap: wrap;
    }

    .about-me-avatar-wrapper {
        width: 100px;
        height: 100px;
    }

    .about-me-avatar {
        width: 85px;
        height: 85px;
        font-size: 2.5rem;
    }

    .about-me-right {
        padding: 25px 20px;
        text-align: center;
        align-items: center;
    }

    .about-me-name {
        font-size: 1.5rem;
    }

    .about-me-bio {
        font-size: 0.85rem;
        text-align: center;
    }

    .about-me-stats {
        width: 100%;
    }

    .about-me-skills {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-brand {
        justify-content: center;
    }

    .floating-telegram {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 12px 40px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .hero-description {
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 7px 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-card {
        padding: 25px;
    }

    .about-me-left {
        padding: 20px 15px;
        gap: 12px;
    }

    .about-me-avatar-wrapper {
        width: 80px;
        height: 80px;
    }

    .about-me-avatar {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .about-me-right {
        padding: 20px 15px;
        gap: 10px;
    }

    .about-me-name {
        font-size: 1.3rem;
    }

    .about-me-role {
        font-size: 0.8rem;
    }

    .about-me-bio {
        font-size: 0.8rem;
    }

    .about-me-stat-num {
        font-size: 1.2rem;
    }

    .about-me-stat-text {
        font-size: 0.65rem;
    }
}

@media (min-width: 769px) {
    .mobile-drawer,
    .drawer-overlay {
        display: none;
    }
}