/* ============================================
   TECH FUTURISTIC DESIGN SYSTEM
   Dark tech colors, electric blue, holographic accents
   ============================================ */

:root {
    --color-primary: #00f0ff;
    --color-secondary: #ff00ff;
    --color-accent: #39ff14;
    --color-dark: #0a0a0a;
    --color-dark-light: #1a1a1a;
    --color-dark-lighter: #2a2a2a;
    --color-text: #e0e0e0;
    --color-text-dim: #999;
    --font-main: 'Segoe UI', 'Roboto', sans-serif;
    --font-tech: 'Courier New', monospace;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-dim);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-menu a {
    color: var(--color-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 8px 15px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: transform 0.3s ease;
    pointer-events: none;
}

.nav-menu a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ============================================
   HERO SECTION - HOLOGRAPHIC HUD
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-tech {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.tech-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.particle-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle-field::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation: floatParticle 15s ease-in-out infinite;
    pointer-events: none;
}

.particle-field::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 20%;
    right: 15%;
    animation: floatParticle 12s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -50px); }
}

.tech-hero-interface {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hud-frame {
    position: relative;
    padding: 40px;
    border: 2px solid var(--color-primary);
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3), inset 0 0 30px rgba(0, 240, 255, 0.1);
}

.hud-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-primary);
    pointer-events: none;
}

.hud-corner.tl { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.hud-corner.tr { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.hud-corner.bl { bottom: -2px; left: -2px; border-right: none; border-top: none; }
.hud-corner.br { bottom: -2px; right: -2px; border-left: none; border-top: none; }

.system-status {
    display: inline-block;
    font-family: var(--font-tech);
    font-size: 0.8rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.tech-title {
    margin-bottom: 20px;
}

.tech-line {
    display: block;
    font-size: 3.5rem;
    line-height: 1;
}

.tech-line.accent {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-desc {
    font-family: var(--font-tech);
    color: var(--color-text-dim);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.tech-metrics {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.tech-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tech-stat .val {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-tech);
}

.tech-stat .lbl {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-tech {
    padding: 15px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

.btn-tech.btn-primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-dark);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.btn-tech.btn-primary:hover {
    background: transparent;
    color: var(--color-primary);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
}

.btn-tech.btn-secondary {
    background: transparent;
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.btn-tech.btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-dark);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.tech-hologram {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-hologram img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
    position: relative;
    z-index: 2;
}

.hologram-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    pointer-events: none;
}

.hologram-rings::before,
.hologram-rings::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    animation: ringPulse 3s ease-out infinite;
    pointer-events: none;
}

.hologram-rings::before {
    width: 100%;
    height: 100%;
}

.hologram-rings::after {
    width: 110%;
    height: 110%;
    animation-delay: 1.5s;
}

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

/* ============================================
   SECTIONS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    pointer-events: none;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto 0;
}

/* ============================================
   CARDS
   ============================================ */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--color-dark-light);
    border: 1px solid var(--color-primary);
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.3);
}

.card-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    display: block;
}

.card h3 {
    color: var(--color-text);
    margin-bottom: 15px;
}

.card p {
    color: var(--color-text-dim);
}

.card .btn-tech {
    margin-top: 20px;
    font-size: 0.9rem;
    padding: 10px 25px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

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

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    pointer-events: none;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background: var(--color-dark-light);
    border: 1px solid var(--color-primary);
    padding: 20px;
    text-align: center;
}

.stat-box .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-tech);
}

.stat-box .label {
    font-size: 0.9rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
}

.about-image img {
    width: 100%;
    height: auto;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

/* ============================================
   TEAM SECTION
   ============================================ */

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

.team-member {
    background: var(--color-dark-light);
    border: 1px solid var(--color-primary);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.team-member::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.4);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    color: var(--color-text);
    margin-bottom: 5px;
}

.team-info .role {
    color: var(--color-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

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

.testimonial {
    background: var(--color-dark-light);
    border: 1px solid var(--color-primary);
    padding: 30px;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: var(--color-primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--color-text-dim);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    object-fit: cover;
}

.author-info .name {
    color: var(--color-text);
    font-weight: 700;
    display: block;
}

.author-info .company {
    color: var(--color-primary);
    font-size: 0.85rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--color-dark-light);
    border: 1px solid var(--color-primary);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--color-dark);
    border: 1px solid var(--color-primary);
    color: var(--color-text);
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    background: var(--color-dark-light);
    border: 1px solid var(--color-primary);
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.info-content h3 {
    color: var(--color-text);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-content p {
    color: var(--color-text-dim);
    margin: 0;
}

.info-content a {
    color: var(--color-primary);
}

.info-content a:hover {
    color: var(--color-secondary);
}

/* ============================================
   MAP
   ============================================ */

.map-container {
    margin-top: 60px;
    border: 2px solid var(--color-primary);
    overflow: hidden;
    height: 400px;
    background: var(--color-dark-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(90%) contrast(90%);
}

/* ============================================
   BLOG
   ============================================ */

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

.blog-card {
    background: var(--color-dark-light);
    border: 1px solid var(--color-primary);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.4);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card h3 {
    margin-bottom: 15px;
}

.blog-card h3 a {
    color: var(--color-text);
}

.blog-card h3 a:hover {
    color: var(--color-primary);
}

.blog-excerpt {
    color: var(--color-text-dim);
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--color-secondary);
    gap: 10px;
}

/* ============================================
   BLOG ARTICLE
   ============================================ */

.article-hero {
    padding-top: 120px;
    text-align: center;
}

.article-hero h1 {
    max-width: 900px;
    margin: 0 auto 20px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    color: var(--color-text-dim);
}

.article-featured-image {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.article-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2rem;
}

.article-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
    color: var(--color-text-dim);
}

/* ============================================
   FAQ
   ============================================ */

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-dark-light);
    border: 1px solid var(--color-primary);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 240, 255, 0.05);
}

.faq-icon {
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: var(--color-text-dim);
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--color-dark-light);
    border-top: 1px solid var(--color-primary);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--color-primary);
}

.footer-section p {
    color: var(--color-text-dim);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--color-text-dim);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid var(--color-primary);
    padding-top: 20px;
    text-align: center;
    color: var(--color-text-dim);
}

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter-section {
    background: var(--color-dark-light);
    padding: 60px 0;
    border-top: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
}

.newsletter-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.newsletter-section p {
    text-align: center;
    margin-bottom: 30px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: var(--color-dark);
    border: 1px solid var(--color-primary);
    color: var(--color-text);
    font-family: var(--font-main);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.newsletter-form button {
    padding: 15px 35px;
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    color: var(--color-dark);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: transparent;
    color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark-light);
    border-top: 2px solid var(--color-primary);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 30px rgba(0, 240, 255, 0.3);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    color: var(--color-text-dim);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 10px 25px;
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    color: var(--color-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-buttons button:hover {
    background: transparent;
    color: var(--color-primary);
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 120px;
}

.legal-content h1 {
    margin-bottom: 20px;
}

.legal-content .last-updated {
    color: var(--color-text-dim);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--color-text-dim);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
        border-bottom: 2px solid var(--color-primary);
    }

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

    .tech-hero-interface,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .tech-line {
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .tech-metrics {
        flex-wrap: wrap;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .tech-actions {
        flex-direction: column;
    }

    .btn-tech {
        width: 100%;
        text-align: center;
    }
}
