:root {
    --primary-color: #0a1428;
    --secondary-color: #1a2b4a;
    --accent-color: #2d5aa0;
    --highlight-color: #4a90e2;
    --text-light: #ffffff;
    --text-muted: #b8c5d6;
    --gradient-primary: linear-gradient(135deg, #0a1428 0%, #1a2b4a 50%, #2d5aa0 100%);
    --gradient-accent: linear-gradient(45deg, #2d5aa0, #4a90e2);
    --shadow-glow: 0 0 30px rgba(74, 144, 226, 0.3);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

.navbar {
    background: rgba(10, 20, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 144, 226, 0.2);
    transition: var(--transition-smooth);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light) !important;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.navbar-brand:hover {
    color: var(--highlight-color) !important;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

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

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: var(--highlight-color) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

.offcanvas {
    background: var(--secondary-color);
    border-left: 1px solid rgba(74, 144, 226, 0.3);
    height: 100vh;
}

.offcanvas h5 {
    color: white;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 90, 160, 0.1) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes backgroundPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

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

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-accent);
    border: none;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--highlight-color);
    color: var(--highlight-color);
}

.btn-outline-light:hover {
    background: var(--highlight-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.hero-visual {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-visual img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.hero-visual img:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(74, 144, 226, 0.2);
}

.services-section {
    background: var(--secondary-color);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-accent);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--highlight-color);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
    background: rgba(74, 144, 226, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: var(--transition-smooth);
}

.service-icon img {
    width: 100%;
    height: auto;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.service-card h4 {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.solutions-section {
    background: var(--primary-color);
    position: relative;
}

.solutions-content {
    padding: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
    color: white;
}

.feature-text {
    color: var(--text-muted);
    font-weight: 500;
}

.solutions-visual img {
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.solutions-visual img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.2);
}

.technology-section {
    background: var(--secondary-color);
    position: relative;
}

.tech-card {
    background: rgba(10, 20, 40, 0.6);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: var(--transition-smooth);
}

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

.tech-card:hover {
    transform: translateY(-5px);
    border-color: var(--highlight-color);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.2);
}

.tech-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.tech-card h5 {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.results-section {
    background: var(--primary-color);
    position: relative;
}

.result-card {
    background: rgba(74, 144, 226, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: var(--highlight-color);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.2);
}

.result-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
}

.result-label {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-section {
    background: var(--secondary-color);
    position: relative;
}

.contact-form {
    background: rgba(10, 20, 40, 0.4);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-control, .form-select {
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.3);
    color: var(--text-light);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition-smooth);
}

.form-control:focus, .form-select:focus {
    background: rgba(74, 144, 226, 0.15);
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
    color: var(--text-light);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: rgba(10, 20, 40, 0.4);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.contact-item {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.contact-item strong {
    color: var(--text-light);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.footer-section {
    background: var(--primary-color);
    position: relative;
    padding: 3rem 0 1rem;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
}

.footer-brand img {
    filter: brightness(1.2);
}

.footer-brand h5 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-title {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-newsletter .form-control {
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.3);
    color: var(--text-light);
}

.footer-newsletter .btn-outline-light {
    border-color: var(--highlight-color);
    color: var(--highlight-color);
}

.footer-newsletter .btn-outline-light:hover {
    background: var(--highlight-color);
    border-color: var(--highlight-color);
}

.footer-divider {
    border-color: rgba(74, 144, 226, 0.2);
    margin: 2rem 0 1rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 20, 40, 0.95);
    border-top: 1px solid rgba(74, 144, 226, 0.3);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    z-index: 1050;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    color: var(--text-muted);
    margin: 0;
}

.cookie-banner a {
    color: var(--highlight-color);
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

@media (max-width: 998px) {
    .hero-section {
        padding-top: 100px;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .tech-card, .service-card, .result-card {
        margin-bottom: 2rem;
    }
}

.privacy-page {
    padding-top: 80px;
}

.privacy-hero {
    background: var(--gradient-primary);
    padding: 4rem 0 2rem;
    text-align: center;
    position: relative;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(74, 144, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(45, 90, 160, 0.1) 0%, transparent 50%);
}

.privacy-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.privacy-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.privacy-content {
    background: var(--secondary-color);
    padding: 4rem 0;
}

.privacy-section {
    background: rgba(10, 20, 40, 0.4);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.privacy-section:hover {
    border-color: rgba(74, 144, 226, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.1);
}

.privacy-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(74, 144, 226, 0.3);
    padding-bottom: 0.5rem;
}

.privacy-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 1.5rem 0 1rem;
}

.privacy-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section ul {
    color: var(--text-muted);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-section strong {
    color: var(--text-light);
    font-weight: 600;
}

.contact-details {
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.last-updated {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .privacy-title {
        font-size: 2.2rem;
    }
    
    .privacy-section {
        padding: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .contact-form, .contact-info {
        margin-bottom: 2rem;
    }
    
    .privacy-title {
        font-size: 1.8rem;
    }
    
    .privacy-section {
        padding: 1rem;
    }
}
