:root {
    --primary-color: #FF6B35;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --dark-color: #1A1A1A;
    --light-color: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    --gradient-secondary: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    --gradient-accent: linear-gradient(135deg, #FFE66D 0%, #FF6B6B 100%);
    --shadow-brutal: 8px 8px 0px #000000;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
    --border-radius: 0;
    --font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    background: linear-gradient(45deg, #FF6B35, #4ECDC4, #FFE66D, #FF6B6B);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.navbar {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--light-color) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--light-color) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 15px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    background: var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas {
    background: var(--dark-color);
    border-left: 4px solid var(--primary-color);
    background: black;
    height: 100vh;
}

.offcanvas-title {
    color: var(--light-color);
    font-weight: 900;
    text-transform: uppercase;
}

.btn-close {
    filter: invert(1);
}

.hero-section {
    background: var(--dark-color);
    color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23FF6B35" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #B0B0B0;
    font-weight: 300;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    border: 3px solid;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: var(--shadow-brutal);
}

.btn-primary:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px #000000;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-light {
    background: transparent;
    border-color: var(--light-color);
    color: var(--light-color);
    box-shadow: var(--shadow-brutal);
}

.btn-outline-light:hover {
    background: var(--light-color);
    color: var(--dark-color);
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px #000000;
    border-color: var(--light-color);
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-visual img {
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-brutal);
    transition: all 0.3s ease;
}

.hero-visual img:hover {
    transform: translate(-8px, -8px);
    box-shadow: 16px 16px 0px #000000;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.features-section {
    background: var(--light-color);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 107, 53, 0.05) 10px,
        rgba(255, 107, 53, 0.05) 20px
    );
}

.feature-card {
    background: var(--light-color);
    border: 4px solid var(--dark-color);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-brutal);
    height: 100%;
}

.feature-card:hover {
    transform: translate(-6px, -6px);
    box-shadow: 14px 14px 0px var(--primary-color);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--dark-color);
}

.feature-card p {
    color: #666;
    font-weight: 400;
}

.solutions-section {
    background: var(--secondary-color);
    color: var(--light-color);
    position: relative;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="2" fill="%23FFFFFF" opacity="0.1"/></svg>');
}

.solution-content {
    position: relative;
    z-index: 2;
}

.solution-item {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid var(--light-color);
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.solution-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    border-color: var(--accent-color);
}

.solution-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.solution-visual img {
    border: 4px solid var(--light-color);
    box-shadow: var(--shadow-brutal);
}

.technology-section {
    background: var(--dark-color);
    color: var(--light-color);
    position: relative;
}

.technology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(255, 107, 53, 0.1) 50%, transparent 51%);
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid var(--primary-color);
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
    position: relative;
    z-index: 2;
}

.tech-card:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.tech-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.testimonials-section {
    background: var(--accent-color);
    color: var(--dark-color);
}

.testimonial-card {
    background: var(--light-color);
    border: 4px solid var(--dark-color);
    padding: 40px 30px;
    box-shadow: var(--shadow-brutal);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translate(-6px, -6px);
    box-shadow: 14px 14px 0px var(--dark-color);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.contact-section {
    background: var(--light-color);
    position: relative;
}

.contact-form-wrapper {
    background: var(--light-color);
    border: 4px solid var(--dark-color);
    padding: 50px;
    box-shadow: var(--shadow-brutal);
    position: relative;
    z-index: 2;
}

.contact-form .form-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.contact-form .form-control {
    border: 3px solid var(--dark-color);
    border-radius: var(--border-radius);
    padding: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--light-color);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    transform: translateY(-2px);
}

.contact-info {
    background: rgba(78, 205, 196, 0.1);
    border: 3px solid var(--secondary-color);
    padding: 40px;
    height: fit-content;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: var(--dark-color);
}

.contact-item {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item strong {
    color: var(--dark-color);
    display: inline-block;
    width: 80px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.map-container {
    border: 4px solid var(--dark-color);
    overflow: hidden;
    box-shadow: var(--shadow-brutal);
}

.footer-section {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 30px;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 50px,
        rgba(255, 107, 53, 0.1) 50px,
        rgba(255, 107, 53, 0.1) 52px
    );
    pointer-events: none;
}

.footer-brand {
    position: relative;
    z-index: 2;
}

.footer-brand h5 {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo {
    width: 50px;
    height: 50px;
}

.footer-links h6 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #B0B0B0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-contact h6 {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-info-footer p {
    margin-bottom: 10px;
    color: #B0B0B0;
}

.contact-info-footer strong {
    color: var(--light-color);
}

.footer-divider {
    border-color: var(--primary-color);
    border-width: 2px;
    margin: 40px 0 30px;
}

.copyright-text {
    color: #B0B0B0;
    margin: 0;
    font-weight: 500;
}

.footer-legal a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--light-color);
    padding: 20px 0;
    border-top: 4px solid var(--primary-color);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.cookie-link:hover {
    color: var(--primary-color);
}

.privacy-page {
    background: var(--light-color);
    padding: 120px 0 60px;
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 4px solid var(--primary-color);
}

.privacy-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.privacy-header .lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.privacy-content {
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(78, 205, 196, 0.05);
    border-left: 6px solid var(--secondary-color);
}

.privacy-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-color);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.privacy-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 25px 0 15px;
    text-transform: uppercase;
}

.privacy-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-section ul li {
    margin-bottom: 10px;
    color: #555;
}

.privacy-section p {
    margin-bottom: 20px;
    color: #444;
}

.privacy-section strong {
    color: var(--dark-color);
    font-weight: 700;
}

.contact-info-privacy {
    background: rgba(255, 107, 53, 0.1);
    border: 3px solid var(--primary-color);
    padding: 30px;
    margin: 30px 0;
}

.contact-info-privacy p {
    margin-bottom: 15px;
}

.contact-info-privacy a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-privacy a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .feature-card,
    .tech-card,
    .testimonial-card {
        margin-bottom: 30px;
    }
    
    .privacy-section {
        padding: 20px;
    }
    
    .privacy-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-outline-light {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .feature-card,
    .tech-card,
    .testimonial-card {
        padding: 25px 20px;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}