/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-cyan: #00f0ff;
    --primary-magenta: #ff00ff;
    --primary-blue: #0066ff;
    --primary-purple: #8b00ff;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --card-bg: rgba(15, 15, 25, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5);
    --glow-magenta: 0 0 20px rgba(255, 0, 255, 0.5);
    --glow-blue: 0 0 20px rgba(0, 102, 255, 0.5);
}

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

/* Canvas de Partículas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 1.5rem 0;
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 30px rgba(0, 240, 255, 0.1);
}

.navbar.scrolled .logo-img {
    height: 100px;
    transition: height 0.3s ease;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 135px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.6));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.9));
    transform: scale(1.05);
}

.logo-img-footer {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.6));
    margin-bottom: 1rem;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    letter-spacing: 2px;
    display: inline-block;
}

.logo-accent {
    color: var(--primary-magenta);
    text-shadow: 0 0 20px var(--primary-magenta);
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    transition: width 0.3s ease;
    box-shadow: var(--glow-cyan);
}

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-cyan);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--primary-cyan);
}

/* Sección Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10rem 2rem 4rem;
    overflow: hidden;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 0.8s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 240, 255, 0.5);
    font-size: 5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: brightness(1); }
    to { filter: brightness(1.3); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    color: var(--text-primary);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-cyan);
    border: 2px solid var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--primary-cyan);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.6);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 20px;
    filter: blur(1px);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.5);
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-magenta), var(--primary-purple));
    top: 60%;
    right: 20%;
    animation-delay: 1s;
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.5);
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.5);
}

.shape-4 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-magenta));
    top: 30%;
    right: 10%;
    animation-delay: 3s;
    box-shadow: 0 0 40px rgba(139, 0, 255, 0.5);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-10px, 10px) rotate(180deg);
    }
    75% {
        transform: translate(15px, 15px) rotate(270deg);
    }
}

.code-preview {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
}

.code-window {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.2);
    overflow: hidden;
    animation: codeGlow 3s ease-in-out infinite;
}

@keyframes codeGlow {
    0%, 100% { box-shadow: 0 0 50px rgba(0, 240, 255, 0.2); }
    50% { box-shadow: 0 0 80px rgba(0, 240, 255, 0.4); }
}

.code-header {
    background: rgba(15, 15, 25, 0.8);
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-cyan);
    box-shadow: 0 0 10px var(--primary-cyan);
    animation: dotPulse 2s ease-in-out infinite;
}

.code-dot:nth-child(2) {
    background: var(--primary-magenta);
    box-shadow: 0 0 10px var(--primary-magenta);
    animation-delay: 0.3s;
}

.code-dot:nth-child(3) {
    background: var(--primary-blue);
    box-shadow: 0 0 10px var(--primary-blue);
    animation-delay: 0.6s;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.code-content {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.code-line {
    margin-bottom: 0.5rem;
    animation: typewriter 0.5s ease-out;
}

.code-keyword {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

.code-variable {
    color: var(--primary-magenta);
    text-shadow: 0 0 10px var(--primary-magenta);
}

.code-string {
    color: var(--primary-blue);
    text-shadow: 0 0 10px var(--primary-blue);
}

.code-function {
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88;
}

.code-comment {
    color: #666;
    font-style: italic;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-cyan);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

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

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

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

/* Secciones */
section {
    position: relative;
    padding: 6rem 0;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    font-family: 'Orbitron', sans-serif;
}

.title-bg {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(255, 0, 255, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.3;
}

.title-text {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Servicios */
.services {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

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

.service-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-cyan);
    stroke-width: 2;
    filter: drop-shadow(0 0 10px var(--primary-cyan));
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    stroke: var(--primary-magenta);
    filter: drop-shadow(0 0 20px var(--primary-magenta));
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.service-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover .service-glow {
    transform: scaleX(1);
}

/* Tecnologías */
.technologies {
    background: var(--dark-bg);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.tech-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    transition: transform 0.4s ease;
}

.tech-item:hover::before {
    transform: translate(-50%, -50%) scale(1.5);
}

.tech-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.4);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
    transition: all 0.3s ease;
}

.tech-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
    transition: all 0.3s ease;
}

.tech-icon-fallback {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: none;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon,
.tech-item:hover .tech-icon-img {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.8));
}

.tech-item:hover .tech-icon-fallback {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.8));
}

.tech-item span {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    display: block;
}

/* Contacto */
.contact {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.3);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
}

.info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-cyan);
}

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

.contact-form {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(10, 10, 15, 0.8);
    border: 2px solid rgba(0, 240, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.form-group label {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.85rem;
    color: var(--primary-cyan);
    background: var(--card-bg);
    padding: 0 0.5rem;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

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

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

.social-link:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

.social-link:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .title-line.highlight {
        font-size: 4rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 90px;
    }
    
    .navbar {
        padding: 1.5rem 0;
    }
    
    .navbar.scrolled .logo-img {
        height: 70px;
    }
    
    .logo-img-footer {
        height: 80px;
    }
    
    .nav-menu {
        position: fixed;
        top: 120px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        border-top: 1px solid rgba(0, 240, 255, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-line.highlight {
        font-size: 3rem;
    }
    
    .title-bg {
        font-size: 5rem;
    }
    
    .title-text {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 70px;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar.scrolled .logo-img {
        height: 60px;
    }
    
    .logo-img-footer {
        height: 60px;
    }
    
    .hero {
        padding: 6rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-line.highlight {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

