/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #dc2626;
    --dark-red: #991b1b;
    --light-red: #ef4444;
    --accent-red: #fca5a5;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --border-color: #262626;
    --glow-red: rgba(220, 38, 38, 0.5);
    --glow-intense: rgba(220, 38, 38, 0.8);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.loading-logo i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-right: 15px;
    animation: crownPulse 2s infinite;
}

@keyframes crownPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px var(--glow-red)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 20px var(--glow-intense)); }
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--light-red));
    border-radius: 2px;
    animation: loadingProgress 3s ease-in-out;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loading-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0%, 20% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-glow {
    margin-right: 15px;
    position: relative;
}

.logo-glow i {
    font-size: 2rem;
    color: var(--primary-red);
    filter: drop-shadow(0 0 10px var(--glow-red));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 10px var(--glow-red)); }
    50% { filter: drop-shadow(0 0 20px var(--glow-intense)); }
}

.logo-text {
    background: linear-gradient(45deg, var(--primary-red), var(--light-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--light-red));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-red);
    text-shadow: 0 0 10px var(--glow-red);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px var(--glow-red);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="10" fill="%23dc2626" opacity="0.1">01010101</text></svg>') repeat;
    animation: matrixFall 20s linear infinite;
}

@keyframes matrixFall {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.red-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.red-particles::before,
.red-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--glow-red);
    animation: particleFloat 8s ease-in-out infinite;
}

.red-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.red-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(20px); opacity: 1; }
    50% { transform: translateY(-60px) translateX(-10px); opacity: 0.7; }
    75% { transform: translateY(-30px) translateX(-30px); opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.3) 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.glitch-text {
    position: relative;
    background: linear-gradient(45deg, var(--primary-red), var(--light-red), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitchEffect 4s infinite;
}

@keyframes glitchEffect {
    0%, 90%, 100% { transform: translate(0); }
    10% { transform: translate(-2px, 2px); }
    20% { transform: translate(2px, -2px); }
    30% { transform: translate(-2px, -2px); }
    40% { transform: translate(2px, 2px); }
    50% { transform: translate(-2px, 2px); }
    60% { transform: translate(2px, -2px); }
    70% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
}

.subtitle-glow {
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--glow-red);
    animation: subtitlePulse 3s ease-in-out infinite;
}

@keyframes subtitlePulse {
    0%, 100% { text-shadow: 0 0 20px var(--glow-red); }
    50% { text-shadow: 0 0 30px var(--glow-intense), 0 0 40px var(--glow-red); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary {
    background: linear-gradient(45deg, var(--primary-red), var(--light-red));
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-red);
    box-shadow: 0 0 20px var(--glow-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
}

.btn-premium {
    background: linear-gradient(45deg, var(--dark-red), var(--primary-red), var(--light-red));
    color: var(--text-primary);
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.4);
    font-size: 1.2rem;
    padding: 20px 40px;
}

.btn-premium:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.6);
}

/* Security Terminal */
.hero-dashboard {
    position: relative;
}

.security-terminal {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: terminalFloat 6s ease-in-out infinite;
}

@keyframes terminalFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateX(2deg); }
}

.terminal-header {
    background: linear-gradient(90deg, var(--dark-red), var(--primary-red));
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f56; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #27ca3f; }

.terminal-title {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    color: var(--text-primary);
}

.terminal-body {
    padding: 25px;
    font-family: 'Orbitron', monospace;
}

.terminal-line {
    margin-bottom: 20px;
}

.prompt {
    color: var(--primary-red);
    margin-right: 10px;
}

.command {
    color: var(--text-primary);
}

.typing-effect {
    border-right: 2px solid var(--primary-red);
    animation: typing 3s steps(20) infinite, blink 1s infinite;
}

@keyframes typing {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

@keyframes blink {
    0%, 50% { border-color: var(--primary-red); }
    51%, 100% { border-color: transparent; }
}

.system-stats {
    margin: 20px 0;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.stat-label {
    color: var(--text-secondary);
}

.stat-value {
    color: var(--primary-red);
    font-weight: 700;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
    border: 1px solid var(--primary-red);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 5px var(--glow-red); }
    50% { opacity: 0.5; box-shadow: 0 0 15px var(--glow-intense); }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-red), var(--light-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Team Section */
.team {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.team-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-red), transparent, var(--primary-red));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.team-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 80px rgba(220, 38, 38, 0.3);
    border-color: var(--primary-red);
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-red), var(--light-red), var(--primary-red));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.team-card:hover .card-glow {
    opacity: 0.5;
}

.member-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .member-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.8), rgba(239, 68, 68, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .image-overlay {
    opacity: 1;
}

.crown-animation {
    font-size: 4rem;
    animation: crownBounce 2s infinite;
}

@keyframes crownBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(0deg); }
    40% { transform: translateY(-15px) rotate(10deg); }
    60% { transform: translateY(-10px) rotate(-5deg); }
}

.member-info {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.member-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.member-role {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--glow-red);
}

.member-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.telegram-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.telegram-link:hover {
    color: var(--light-red);
    text-shadow: 0 0 10px var(--glow-red);
}

.skill-bars {
    margin-top: 20px;
}

.skill-bar {
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--light-red));
    border-radius: 2px;
    transition: width 2s ease;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: skillShine 2s infinite;
}

@keyframes skillShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-red), transparent, var(--primary-red));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 80px rgba(220, 38, 38, 0.3);
    border-color: var(--primary-red);
}

.service-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-red), var(--light-red), var(--primary-red));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover .service-glow {
    opacity: 0.3;
}

.service-card.featured {
    border-color: var(--primary-red);
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.2);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--primary-red), var(--light-red));
    color: var(--text-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-red), var(--light-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
}

.service-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-price {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--glow-red);
}

.service-features {
    text-align: left;
    margin-top: 25px;
}

.feature {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
}

.pricing-container {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.pricing-card {
    max-width: 600px;
    background: var(--card-bg);
    border-radius: 30px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    border: 2px solid var(--primary-red);
    box-shadow: 0 30px 100px rgba(220, 38, 38, 0.3);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-red), transparent, var(--primary-red));
    opacity: 0.05;
}

.pricing-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary-red), var(--light-red), var(--primary-red));
    border-radius: 30px;
    opacity: 0.5;
    z-index: -1;
    animation: pricingGlow 3s ease-in-out infinite;
}

@keyframes pricingGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--dark-red), var(--primary-red));
    color: var(--text-primary);
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.4);
    z-index: 3;
}

.pricing-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.pricing-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--primary-red), var(--light-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 4rem;
    color: var(--text-primary);
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.4);
    animation: pricingIconFloat 4s ease-in-out infinite;
}

@keyframes pricingIconFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(180deg); }
}

.pricing-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.currency {
    font-size: 2.5rem;
    color: var(--primary-red);
    font-weight: 600;
}

.amount {
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 0 0 30px var(--glow-red);
    animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { text-shadow: 0 0 30px var(--glow-red); }
    50% { text-shadow: 0 0 50px var(--glow-intense), 0 0 70px var(--glow-red); }
}

.period {
    font-size: 2rem;
    color: var(--primary-red);
    font-weight: 600;
}

.price-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.pricing-features {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--primary-red);
    font-size: 1.3rem;
    filter: drop-shadow(0 0 5px var(--glow-red));
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--dark-bg);
}

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

.contact-card {
    background: var(--card-bg);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-red), transparent, var(--primary-red));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover::before {
    opacity: 0.05;
}

.contact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 80px rgba(220, 38, 38, 0.3);
    border-color: var(--primary-red);
}

.contact-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-red), var(--light-red), var(--primary-red));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.contact-card:hover .contact-glow {
    opacity: 0.3;
}

.contact-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-red), var(--light-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--text-primary);
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.4);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: rotateY(360deg) scale(1.1);
}

.contact-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-color);
}

.contact-link:hover {
    background: var(--primary-red);
    color: var(--text-primary);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.email-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 20px 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: var(--light-red);
    text-shadow: 0 0 10px var(--glow-red);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    background: var(--darker-bg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
}

.subscribe-btn {
    padding: 15px 20px;
    background: linear-gradient(45deg, var(--primary-red), var(--light-red));
    border: none;
    border-radius: 25px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.subscribe-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: var(--text-primary);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo .logo-glow {
    margin-right: 15px;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-red), var(--light-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

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

    .amount {
        font-size: 3.5rem;
    }

    .pricing-card {
        padding: 40px 30px;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .amount {
        font-size: 2.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary-red), var(--light-red));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--light-red), var(--primary-red));
}

/* AOS Animation Styles */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="slide-right"] {
    transform: translateX(-50px);
}

[data-aos="slide-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="slide-left"] {
    transform: translateX(50px);
}

[data-aos="slide-left"].aos-animate {
    transform: translateX(0);
}