/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066ff;
    --secondary-color: #00ff88;
    --accent-color: #ff4444;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #111111;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    --shadow-glow: 0 0 15px rgba(0, 102, 255, 0.15);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        linear-gradient(180deg, 
            var(--dark-bg) 0%, 
            var(--darker-bg) 25%, 
            var(--dark-bg) 50%, 
            var(--darker-bg) 75%, 
            var(--dark-bg) 100%
        );
}

/* Demo elements hidden */
.loading-screen,
.intro-screen,
#loading-screen,
#intro-screen,
.loading-content {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.loading-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}

body {
    overflow: auto !important;
    position: static !important;
}

.navbar, .hero, .services, .about, .team, .contact, .footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
}

.intro-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: introContentAppear 1s ease-out;
}

.intro-logo {
    margin-bottom: 2rem;
}

.intro-shield {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 0 50px rgba(0, 102, 255, 0.5);
    animation: introShieldPulse 2s ease-in-out infinite;
}

.intro-text {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.intro-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-description {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.intro-controls {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #0044cc);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ccc;
    border: 2px solid #444;
}

.btn-secondary:hover {
    background: #333;
    color: white;
    border-color: #666;
}

.intro-timing {
    margin-top: 2rem;
}

.timing-text {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Phase 1: Corporate Website (0-3s) */
.corporate-website {
    position: absolute;
    width: 95%;
    max-width: 1000px;
    height: 90%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    animation: websiteAppear 1s ease-out;
}

.website-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.corp-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.corp-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #667eea;
    font-size: 1.5rem;
}

.corp-logo span {
    font-size: 1.5rem;
    font-weight: bold;
}

.website-nav {
    display: flex;
    gap: 2rem;
}

.website-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.website-nav a:hover {
    opacity: 0.8;
}

.website-body {
    padding: 2rem;
    height: calc(100% - 80px);
    overflow-y: auto;
}

.hero-section {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-section h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-section p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    position: relative;
    transition: transform 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.dashboard-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.dashboard-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.status-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-indicator.online {
    background: #28a745;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.activity-feed {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.activity-feed h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.activity-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.activity-item:last-child {
    border-bottom: none;
}

.time {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.activity {
    color: #333;
    font-size: 0.9rem;
}

/* Phase 2: Attack Detection (4-10s) - 2 seconds faster */
.attack-detection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    animation: attackDetectionAppear 6s ease-in-out 4s forwards;
}

.terminal-window {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    height: 400px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    font-family: 'Courier New', 'Monaco', monospace;
}

.terminal-header {
    background: #2d2d2d;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #444;
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.terminal-buttons .btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-buttons .btn.red { background: #ff5f56; }
.terminal-buttons .btn.yellow { background: #ffbd2e; }
.terminal-buttons .btn.green { background: #27ca3f; }

.terminal-title {
    color: #fff;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 500;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
}

.terminal-line {
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: terminalLineAppear 0.5s ease-out forwards;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.terminal-line.typing {
    animation: terminalLineAppear 0.5s ease-out forwards, typing 2s steps(40, end) forwards;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
}

.terminal-line.typing::after {
    content: '|';
    animation: blink 1s infinite;
    color: #4CAF50;
    margin-left: 2px;
    position: absolute;
    right: -10px;
}

.terminal-line:nth-child(1) { animation-delay: 5s; }
.terminal-line:nth-child(2) { animation-delay: 6s; }
.terminal-line:nth-child(3) { animation-delay: 7s; }
.terminal-line:nth-child(4) { animation-delay: 8s; }
.terminal-line:nth-child(5) { animation-delay: 9s; }
.terminal-line:nth-child(6) { animation-delay: 10s; }
.terminal-line:nth-child(7) { animation-delay: 11s; }
.terminal-line:nth-child(8) { animation-delay: 12s; }
.terminal-line:nth-child(9) { animation-delay: 13s; }
.terminal-line:nth-child(10) { animation-delay: 14s; }

.prompt {
    color: #4CAF50;
    font-weight: bold;
}

.command {
    color: #fff;
    font-weight: bold;
}

.output {
    color: #ccc;
}

.output.warning {
    color: #ff9800;
}

.output.danger {
    color: #f44336;
    font-weight: bold;
}

/* Phase 3: Active Attack (10-18s) - 2 seconds faster */
.active-attack {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 53, 69, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, rgba(220, 53, 69, 0.05) 0%, transparent 50%);
    opacity: 0;
    animation: activeAttackAppear 8s ease-in-out 10s forwards;
}

.active-attack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(220, 53, 69, 0.03) 2px,
            rgba(220, 53, 69, 0.03) 4px
        );
    animation: scanLines 0.1s linear infinite;
}

@keyframes scanLines {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

.attack-vectors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.vector-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #dc3545, transparent);
    height: 2px;
    opacity: 0.8;
    animation: vectorFlow 2s ease-in-out infinite;
}

.vector-1 {
    top: 20%;
    left: -100%;
    width: 300px;
    animation-delay: 11s;
}

.vector-2 {
    top: 40%;
    right: -100%;
    width: 250px;
    animation-delay: 12s;
}

.vector-3 {
    top: 60%;
    left: -100%;
    width: 350px;
    animation-delay: 13s;
}

.vector-4 {
    top: 80%;
    right: -100%;
    width: 200px;
    animation-delay: 14s;
}

.attack-source {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(220, 53, 69, 0.9);
    padding: 1rem;
    border-radius: 8px;
    opacity: 0;
    animation: attackSourceAppear 0.5s ease-out 11s forwards;
}

.hacker-icon {
    font-size: 2rem;
}

.attack-info {
    color: white;
}

.attacker-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.attack-location {
    font-size: 0.9rem;
    opacity: 0.8;
}

.attack-progress {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0;
    animation: attackProgressAppear 0.5s ease-out 12s forwards;
}

.progress-bar {
    width: 300px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #dc3545, #ff6b6b);
    width: 0%;
    animation: progressFill 4s ease-in-out 13s forwards;
}

.attack-percentage {
    color: #dc3545;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 20px rgba(220, 53, 69, 0.8);
    margin-top: 1rem;
    animation: percentageGlow 1s ease-in-out infinite alternate;
}

@keyframes percentageGlow {
    0% {
        text-shadow: 0 0 20px rgba(220, 53, 69, 0.8);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 30px rgba(220, 53, 69, 1);
        transform: scale(1.05);
    }
}

.attack-messages {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
    animation: attackMessagesAppear 0.5s ease-out 14s forwards;
}

/* Dramatic Attack Blocking Effect */
.attack-blocked {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(220, 53, 69, 0.3);
    opacity: 0;
    animation: attackBlocked 1s ease-out 21s forwards;
}

.blocked-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.blocked-text {
    font-size: 4rem;
    font-weight: 900;
    color: #dc3545;
    text-shadow: 0 0 20px rgba(220, 53, 69, 0.8);
    margin-bottom: 1rem;
    animation: blockedPulse 0.5s ease-out 21.2s forwards;
}

.blocked-subtext {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0;
    animation: blockedSubtextAppear 0.5s ease-out 21.5s forwards;
}

.blocked-reason {
    font-size: 1.2rem;
    color: #28a745;
    font-weight: 500;
    opacity: 0;
    animation: blockedReasonAppear 0.5s ease-out 22s forwards;
}

.attack-msg {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.95), rgba(178, 34, 34, 0.9));
    color: #fff;
    padding: 0.8rem 1.2rem;
    margin-bottom: 0.8rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid #ff4444;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
    opacity: 0;
    animation: attackMsgSlide 0.5s ease-out forwards;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.attack-msg:nth-child(1) { animation-delay: 15s; }
.attack-msg:nth-child(2) { animation-delay: 16s; }
.attack-msg:nth-child(3) { animation-delay: 17s; }
.attack-msg:nth-child(4) { animation-delay: 18s; }
.attack-msg:nth-child(5) { animation-delay: 19s; }
.attack-msg:nth-child(6) { animation-delay: 20s; }

.data-breach {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: dataBreachAppear 0.5s ease-out 18s forwards;
}

.breach-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.95), rgba(178, 34, 34, 0.9));
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 2px solid #ff4444;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    animation: breachBlink 1s ease-in-out infinite;
}

.breach-icon {
    font-size: 2rem;
    animation: breachBlink 1s ease-in-out infinite;
}

.breach-text {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.breach-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.breach-item {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.8), rgba(178, 34, 34, 0.7));
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Phase 4: RCA Detection (24-30s) - After attack is blocked */
.rca-detection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    animation: rcaDetectionAppear 6s ease-in-out 24s forwards;
}

.rca-alert {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 102, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 8px;
    opacity: 0;
    animation: rcaAlertAppear 0.5s ease-out 25s forwards;
}

.alert-icon {
    font-size: 2rem;
    animation: alertPulse 1s ease-in-out infinite;
}

.alert-text {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.rca-terminal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    background: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
    overflow: hidden;
    opacity: 0;
    animation: rcaTerminalAppear 0.5s ease-out 26s forwards;
}

/* Phase 5: RCA Intervention (30-38s) - After RCA detection */
.rca-intervention {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 255, 0.1);
    opacity: 0;
    animation: rcaInterventionAppear 8s ease-in-out 30s forwards;
}

.rca-logo-epic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    opacity: 0;
    animation: rcaLogoEpicAppear 1s ease-out 31s forwards;
}

.shield-container {
    position: relative;
    margin-bottom: 2rem;
}

.shield-outer {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #0066ff, #0044cc);
    border-radius: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: shieldRotate 2s ease-in-out 14s forwards;
}

.shield-inner {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #0088ff, #0066ff);
    border-radius: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shieldPulse 1.5s ease-in-out 14.5s infinite;
}

.shield-r {
    font-family: 'Orbitron', monospace;
    font-size: 6rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.shield-glow {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: shieldGlow 2s ease-in-out 14s infinite;
}

.rca-text-epic {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.rca-tagline {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    letter-spacing: 2px;
}

.intervention-sequence {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
    animation: interventionSequenceAppear 0.5s ease-out 14s forwards;
}

.intervention-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 102, 255, 0.9);
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    opacity: 0;
    animation: interventionStepAppear 0.5s ease-out forwards;
}

.intervention-step:nth-child(1) { animation-delay: 14.5s; }
.intervention-step:nth-child(2) { animation-delay: 15s; }
.intervention-step:nth-child(3) { animation-delay: 15.5s; }
.intervention-step:nth-child(4) { animation-delay: 16s; }
.intervention-step:nth-child(5) { animation-delay: 16.5s; }

.step-icon {
    font-size: 1.5rem;
}

.step-text {
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 500;
}

.security-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    animation: securityGridOverlayAppear 1s ease-out 15s forwards;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3), transparent);
    height: 1px;
    animation: gridLineFlow 3s ease-in-out infinite;
}

.grid-1 { top: 20%; left: -100%; width: 400px; animation-delay: 15.5s; }
.grid-2 { top: 40%; right: -100%; width: 350px; animation-delay: 16s; }
.grid-3 { top: 60%; left: -100%; width: 450px; animation-delay: 16.5s; }
.grid-4 { top: 80%; right: -100%; width: 300px; animation-delay: 17s; }
.grid-5 { top: 50%; left: -100%; width: 500px; animation-delay: 17.5s; }

.success-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    opacity: 0;
    animation: successIndicatorsAppear 0.5s ease-out 17s forwards;
}

.success-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: successItemAppear 0.5s ease-out forwards;
}

.success-item:nth-child(1) { animation-delay: 17.5s; }
.success-item:nth-child(2) { animation-delay: 18s; }
.success-item:nth-child(3) { animation-delay: 18.5s; }
.success-item:nth-child(4) { animation-delay: 19s; }

.success-icon {
    width: 40px;
    height: 40px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    animation: successIconPulse 1s ease-in-out infinite;
}

.success-text {
    color: #28a745;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
}

/* Phase 6: Redirect Screen (38-44s) - After RCA intervention */
.redirect-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(40, 167, 69, 0.1));
    opacity: 0;
    animation: redirectScreenAppear 6s ease-in-out 38s forwards;
}

.redirect-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    opacity: 0;
    animation: redirectContentAppear 1s ease-out 39s forwards;
}

.redirect-logo {
    margin-bottom: 2rem;
}

.redirect-shield {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 0 50px rgba(40, 167, 69, 0.5);
    animation: redirectShieldGlow 2s ease-in-out 35.5s infinite;
}

.redirect-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.redirect-message {
    margin-bottom: 3rem;
}

.redirect-message h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, #28a745);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.redirect-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 500;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(40, 167, 69, 0.3);
    border-top: 4px solid #28a745;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Particle Background */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    transition: all 0.3s ease;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 2px;
    opacity: 0.8;
    animation: pixelPulse 2s ease-in-out infinite;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 1px;
    opacity: 0.6;
    animation: pixelPulse 2s ease-in-out infinite 0.5s;
}

.logo-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    font-weight: 600;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::before {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    background: 
        linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%),
        radial-gradient(circle at 20% 20%, rgba(0, 102, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.12) 0%, transparent 60%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(0, 102, 255, 0.02) 49%, rgba(0, 102, 255, 0.02) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 102, 255, 0.02) 49%, rgba(0, 102, 255, 0.02) 51%, transparent 52%);
    background-size: 120px 120px;
    animation: gridMove 60s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 102, 255, 0.01) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 102, 255, 0.01) 50%, transparent 70%);
    background-size: 150px 150px;
    animation: gridMove 80s linear infinite reverse;
    pointer-events: none;
    opacity: 0.4;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
    padding-top: 2rem;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }
.title-line:nth-child(4) { animation-delay: 0.4s; }

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease 0.5s forwards;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease 0.6s forwards;
}

.btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    white-space: nowrap;
    min-width: fit-content;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyber-grid {
    position: absolute;
    width: 250px;
    height: 250px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    opacity: 0.6;
}

.grid-item {
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 8px;
    animation: pulse 4s ease-in-out infinite;
}

.grid-item:nth-child(odd) {
    animation-delay: 0.5s;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.floating-icons i:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 30%;
    right: 25%;
    animation-delay: 0.5s;
}

.floating-icons i:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 1s;
}

.floating-icons i:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.floating-icons i:nth-child(5) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

/* Cyber Lines */
.cyber-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    height: 1px;
    opacity: 0.6;
    animation: lineFlow 4s ease-in-out infinite;
}

.line-1 {
    top: 20%;
    left: -100%;
    width: 200px;
    animation-delay: 0s;
}

.line-2 {
    top: 60%;
    right: -100%;
    width: 150px;
    animation-delay: 1.5s;
}

.line-3 {
    top: 80%;
    left: -100%;
    width: 180px;
    animation-delay: 3s;
}

/* Data Stream */
.data-stream {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-point {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: dataFlow 3s linear infinite;
    opacity: 0.8;
}

.data-point:nth-child(1) {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.data-point:nth-child(2) {
    top: 50%;
    left: 40%;
    animation-delay: 0.6s;
}

.data-point:nth-child(3) {
    top: 70%;
    left: 60%;
    animation-delay: 1.2s;
}

.data-point:nth-child(4) {
    top: 40%;
    left: 80%;
    animation-delay: 1.8s;
}

.data-point:nth-child(5) {
    top: 60%;
    left: 10%;
    animation-delay: 2.4s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--gradient-primary);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--primary-color);
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--dark-bg);
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(0, 136, 255, 0.06) 0%, transparent 60%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -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;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 60px rgba(0, 102, 255, 0.3),
        0 0 40px rgba(0, 102, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-bg);
}

.service-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
    background: var(--darker-bg);
    position: relative;
    background-image: 
        radial-gradient(circle at 70% 30%, rgba(0, 255, 136, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(0, 136, 255, 0.05) 0%, transparent 60%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(17, 17, 17, 0.8);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 102, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.05), transparent);
    transition: left 0.5s ease;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 
        0 25px 60px rgba(0, 102, 255, 0.4),
        0 0 50px rgba(0, 102, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: rgba(0, 102, 255, 0.05);
    box-shadow: 
        0 15px 40px rgba(0, 102, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-bg);
}

.pricing-card.bronze .package-icon {
    background: linear-gradient(135deg, #cd7f32, #8b4513);
}

.pricing-card.silver .package-icon {
    background: linear-gradient(135deg, #c0c0c0, #808080);
}

.pricing-card.gold .package-icon {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.pricing-card.platinum .package-icon {
    background: linear-gradient(135deg, #e5e4e2, #b9b9b9);
}

.pricing-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.package-name {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.amount {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features h4 {
    font-family: 'Orbitron', monospace;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-features li i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    font-size: 0.9rem;
}

.package-note {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    padding: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 100%;
    justify-content: center;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Retainer Section */
.retainer-section {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(0, 255, 136, 0.2);
}

.retainer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.retainer-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.retainer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.05), transparent);
    transition: left 0.5s ease;
}

.retainer-card:hover::before {
    left: 100%;
}

.retainer-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.retainer-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.retainer-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.retainer-header {
    text-align: center;
    margin-bottom: 2rem;
}

.retainer-card .package-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark-bg);
}

.retainer-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.retainer-card .package-name {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.retainer-card .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.retainer-card .currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.retainer-card .amount {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.retainer-card .period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hourly Rate Section */
.hourly-rate-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.hourly-rate-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hourly-rate-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.hourly-rate-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hourly-rate-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-bg);
    flex-shrink: 0;
}

.hourly-rate-info {
    text-align: left;
}

.hourly-rate-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.hourly-rate-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.hourly-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hourly-price .currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.hourly-price .amount {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hourly-price .period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hourly-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Team Section */
.team {
    padding: 8rem 0;
    background: var(--dark-bg);
    position: relative;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 136, 255, 0.04) 0%, transparent 50%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(0, 255, 136, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.05), transparent);
    transition: left 0.6s ease;
}

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.member-photo {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--dark-bg);
    position: relative;
    transition: all 0.3s ease;
}

.team-member:hover .photo-placeholder {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.member-status {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid var(--card-bg);
    animation: pulse 2s infinite;
}

.member-status.online {
    background: var(--primary-color);
}

.member-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-experience {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.member-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.cert-badge i {
    font-size: 1rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    background: var(--darker-bg);
    color: var(--text-secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover .expertise-tag {
    border-color: var(--primary-color);
    color: var(--text-primary);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--darker-bg);
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 136, 255, 0.03) 0%, transparent 50%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.certification-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.badge i {
    font-size: 2rem;
    color: var(--primary-color);
}

.badge span {
    font-weight: 600;
    color: var(--text-primary);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 40% 30%, rgba(0, 255, 136, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(0, 136, 255, 0.04) 0%, transparent 50%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.contact-details h4 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group select:valid + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    background: var(--card-bg);
    padding: 0 0.5rem;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--card-bg);
    color: var(--text-primary);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    color: var(--text-muted);
}

/* Animations */
@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
    to {
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.8);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pixelPulse {
    0% {
        opacity: 0.4;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(80px, 80px);
    }
}

@keyframes lineFlow {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(400px);
        opacity: 0;
    }
}

@keyframes dataFlow {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    100% {
        transform: translateY(-40px) scale(0.5);
        opacity: 0;
    }
}

/* Loading Animation Keyframes */
@keyframes websiteAppear {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes attackSequence {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes attackMsgAppear {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes redFlash {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}

@keyframes glitch {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes errorAppear {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rcaIntervention {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes shieldGlow {
    0% {
        box-shadow: 0 0 50px rgba(0, 102, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 100px rgba(0, 102, 255, 0.8);
    }
    100% {
        box-shadow: 0 0 50px rgba(0, 102, 255, 0.5);
    }
}

@keyframes interventionMsgAppear {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes blueShield {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes securityGrid {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes successAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Epic 20-Second Animation Keyframes */
@keyframes websiteAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes attackDetectionAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes terminalLineAppear {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes activeAttackAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes vectorFlow {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(400px);
        opacity: 0;
    }
}

@keyframes attackSourceAppear {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes attackProgressAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressFill {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes attackMessagesAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes attackMsgSlide {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes dataBreachAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes breachBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes rcaDetectionAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes rcaAlertAppear {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes alertPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes rcaTerminalAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes rcaInterventionAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes rcaLogoEpicAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes shieldRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes shieldPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes shieldGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes interventionSequenceAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes interventionStepAppear {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes securityGridOverlayAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes gridLineFlow {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(600px);
        opacity: 0;
    }
}

@keyframes successIndicatorsAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes successItemAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes victoryScreenAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes victoryContentAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes victoryShieldGlow {
    0%, 100% {
        box-shadow: 0 0 50px rgba(40, 167, 69, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 80px rgba(40, 167, 69, 0.8);
        transform: scale(1.05);
    }
}

/* Intro and Transition Screen Animations */
@keyframes introContentAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes introShieldPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 50px rgba(0, 102, 255, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 80px rgba(0, 102, 255, 0.8);
    }
}

@keyframes transitionScreenAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes transitionContentAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes transitionShieldGlow {
    0%, 100% {
        box-shadow: 0 0 50px rgba(40, 167, 69, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 80px rgba(40, 167, 69, 0.8);
        transform: scale(1.05);
    }
}

@keyframes valueCardAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes btnEnterAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ctaSubtextAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Redirect Screen Animations */
@keyframes redirectScreenAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes redirectContentAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes redirectShieldGlow {
    0%, 100% {
        box-shadow: 0 0 50px rgba(40, 167, 69, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 80px rgba(40, 167, 69, 0.8);
        transform: scale(1.05);
    }
}

/* Typing and Blocking Animations */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.terminal-line.typing {
    animation: terminalLineAppear 0.5s ease-out forwards, typing 2s steps(40, end) forwards;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes attackBlocked {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes blockedPulse {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes blockedSubtextAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blockedReasonAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroShimmer {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .btn {
        font-size: 0.8rem;
        padding: 0.8rem 1.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .retainer-grid {
        grid-template-columns: 1fr;
    }
    
    .retainer-card.featured {
        transform: none;
    }
    
    .retainer-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .hourly-rate-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hourly-rate-info {
        text-align: center;
    }
    
    .hourly-features {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 0 1rem;
    }
    
    .service-card,
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
