* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066ff;
    --secondary-color: #0a0e1a;
    --text-color: #ffffff;
    --text-secondary: #94a3b8;
    --bg-dark: #050810;
    --bg-card: #0f1419;
    --accent-color: #00d9ff;
    --border-color: #1a2332;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 10%, rgba(0, 102, 255, 0.05) 0%, transparent 30%),
        var(--bg-dark);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0px, transparent 1px, transparent 20px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0px, transparent 1px, transparent 20px);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 8, 16, 0.85);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(26, 35, 50, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle:hover span {
    background: var(--accent-color);
}

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

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

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

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 6rem 0;
    background: transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 217, 255, 0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 217, 255, 0.4);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.1);
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.5), 0 0 20px rgba(0, 217, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.btn-secondary:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: transparent;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(15, 20, 25, 0.7);
    border: 1px solid rgba(26, 35, 50, 0.6);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.25), 0 0 30px rgba(0, 217, 255, 0.1);
    background: rgba(15, 20, 25, 0.85);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.service-card:hover .service-icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
}

.service-icon {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.btn-service {
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.btn-service::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-service:hover::before {
    width: 400px;
    height: 400px;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.5), 0 0 20px rgba(0, 217, 255, 0.3);
}

/* Why Us Section */
.why-us {
    padding: 6rem 0;
    background: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

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

.feature-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.feature-item:hover .feature-icon-box {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: white;
    stroke-width: 2;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-description {
    color: var(--text-secondary);
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.exp-stat {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.exp-stat:hover {
    transform: scale(1.05);
}

.exp-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.exp-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Team Section */
.team {
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 1400px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
    }
}

.team-card {
    background: rgba(35, 39, 46, 0.95);
    border: 1px solid rgba(60, 60, 65, 0.5);
    border-radius: 8px;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 217, 255, 0.5);
}

.team-avatar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    position: relative;
    z-index: 5;
    margin-bottom: 1rem;
}

.team-card .team-info {
    padding: 0 1.5rem 1.5rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.team-badge-corner {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(212, 212, 216, 0.95);
    border-radius: 20px;
    padding: 0.35rem 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #1a1a1a;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.3s ease;
}

.team-badge-corner:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.badge-icon {
    width: 14px;
    height: 14px;
    color: #1a1a1a;
    stroke-width: 2.5;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
    background: rgba(15, 20, 25, 0.85);
}

.team-card:hover::before {
    opacity: 1;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: block;
    background-color: transparent;
}

.team-card:hover .team-avatar {
    border-color: rgba(15, 20, 25, 0.95);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

.team-info {
    flex: 1;
}

.team-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.status-dot-inline {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot-inline.online {
    background: #00ff00;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.6);
}

.status-dot-inline.idle {
    background: #ffaa00;
    box-shadow: 0 0 8px rgba(255, 170, 0, 0.6);
}

.team-name {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.team-username {
    color: #5e9eff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.team-role {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-section {
    margin-bottom: 1rem;
}

.team-section h5 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.team-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.badge-founder {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
}

.badge-bot-developer {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
}

.badge-project-lead {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.badge-co-founder {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
}

.badge-web-developer {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.badge-admin-lead {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.badge-manager {
    background: #f59e0b;
    border-color: #f59e0b;
    color: white;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.badge-founder:hover {
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.5);
}

.badge-bot-developer:hover,
.badge-co-founder:hover {
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.5);
}

.badge-project-lead:hover,
.badge-admin-lead:hover {
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.5);
}

.badge-web-developer:hover {
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5);
}

.badge-manager:hover {
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}

.team-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.online {
    background: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.status-dot.idle {
    background: #ffaa00;
    box-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem 0;
    background: rgba(15, 20, 25, 0.8);
    color: var(--text-secondary);
    border-top: 1px solid rgba(26, 35, 50, 0.5);
    position: relative;
    margin-top: 4rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    opacity: 0.95;
    transition: all 0.3s;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-list a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-discord {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 8px;
    transition: all 0.3s;
}

.footer-discord:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.discord-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(26, 35, 50, 0.5);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.7);
    margin-bottom: 0.5rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar .container {
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(5, 8, 16, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(26, 35, 50, 0.5);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(26, 35, 50, 0.3);
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        padding-left: 1.5rem;
        color: var(--accent-color);
    }

    .logo-img {
        height: 35px;
    }

    .hero {
        margin-top: 70px;
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .stats {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .services {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon-box {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .why-us {
        padding: 4rem 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-icon-box {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .experience-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team {
        padding: 4rem 0;
    }

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

    .team-card {
        flex-direction: column;
    }

    .team-avatar-wrapper {
        padding-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .team-avatar {
        width: 70px;
        height: 70px;
    }

    .team-card .team-info {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }

    .team-name {
        font-size: 1.3rem;
    }

    .footer {
        padding: 3rem 0 1.5rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .header {
        border-bottom-width: 1px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .nav-menu {
        gap: 0.75rem;
        font-size: 0.8rem;
        justify-content: center;
        width: 100%;
        margin-top: 0.5rem;
    }

    .logo-img {
        height: 32px;
    }

    .hero {
        margin-top: 65px;
        padding: 3rem 0;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 0.65rem 1.5rem;
    }

    .stats {
        padding: 2.5rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .services {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-icon-box {
        width: 50px;
        height: 50px;
    }

    .service-icon {
        width: 28px;
        height: 28px;
    }

    .service-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .service-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .service-features {
        margin-bottom: 1rem;
    }

    .service-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .service-price {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .why-us {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 3rem;
    }

    .feature-item {
        padding: 1.25rem;
    }

    .feature-icon-box {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
    }

    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

    .experience-stats {
        gap: 1.25rem;
    }

    .exp-stat {
        padding: 1.5rem;
    }

    .exp-number {
        font-size: 2.5rem;
    }

    .exp-label {
        font-size: 0.85rem;
    }

    .team {
        padding: 3rem 0;
    }

    .team-grid {
        gap: 1.25rem;
    }

    .team-card {
        border-radius: 6px;
    }

    .team-badge-corner {
        top: 10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .badge-icon {
        width: 12px;
        height: 12px;
    }

    .team-avatar-wrapper {
        padding-top: 1.25rem;
    }

    .team-avatar {
        width: 65px;
        height: 65px;
    }

    .team-card .team-info {
        padding: 0 1rem 1rem 1rem;
    }

    .team-name {
        font-size: 1.2rem;
    }

    .team-username {
        font-size: 0.85rem;
    }

    .team-role {
        font-size: 0.95rem;
    }

    .team-section {
        margin-bottom: 0.75rem;
    }

    .team-section h5 {
        font-size: 0.85rem;
    }

    .team-section p {
        font-size: 0.85rem;
    }

    .team-badges {
        gap: 0.4rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .team-status {
        font-size: 0.85rem;
    }

    .footer {
        padding: 2.5rem 0 1.25rem 0;
    }

    .footer-brand {
        gap: 0.75rem;
    }

    .footer-logo {
        height: 45px;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .footer-list {
        gap: 0.6rem;
    }

    .footer-list a {
        font-size: 0.85rem;
    }

    .footer-discord {
        padding: 0.45rem 0.9rem;
        font-size: 0.85rem;
    }

    .discord-icon {
        width: 20px;
        height: 20px;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }

    .footer-disclaimer {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }
}
