:root {
    --bg-dark: #0a0b10;
    --card-bg: rgba(22, 27, 46, 0.65);
    --primary-neon: #7928ca;
    --accent-cyan: #00dfd8;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --glow-border: rgba(121, 40, 202, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Background Canvas */
#tech-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Glassmorphism Classes */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glow-border);
    border-radius: 16px;
}

/* Navigation Header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 8%;
    background: rgba(10, 11, 16, 0.85);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
}

.logo span { color: var(--accent-cyan); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover { color: var(--accent-cyan); }

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Buttons */
.btn-primary, .btn-glow, .btn-card {
    background: linear-gradient(135deg, var(--primary-neon), var(--accent-cyan));
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(121, 40, 202, 0.5);
}

.btn-primary:hover, .btn-glow:hover, .btn-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 223, 216, 0.6);
}

.btn-secondary {
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: rgba(0, 223, 216, 0.1);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.hero-content { max-width: 800px; }

.badge-tech {
    background: rgba(121, 40, 202, 0.2);
    border: 1px solid var(--primary-neon);
    color: var(--accent-cyan);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3rem;
    margin: 1.5rem 0 1rem;
    line-height: 1.2;
}

.hero h1 span {
    background: linear-gradient(90deg, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* About & Products Sections */
.about-section, .products-section { padding: 5rem 8%; }

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.section-title span { color: var(--accent-cyan); }

.about-card { padding: 3rem; }

.tech-list {
    list-style: none;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.product-icon { font-size: 2rem; }

.card-badge {
    background: rgba(0, 223, 216, 0.15);
    color: var(--accent-cyan);
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
}

.card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.pricing-box { margin-bottom: 1.5rem; }

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.pricing-box small { color: var(--text-muted); }

/* Footer */
/* Professional Footer Styling */
footer {
    background: #050609;
    border-top: 1px solid rgba(121, 40, 202, 0.2);
    padding: 4rem 0 0 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 3rem 5%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 2px;
    background: var(--accent-cyan);
    border-radius: 2px;
}

/* Brand Column */
.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
}

.footer-logo span { color: var(--accent-cyan); }

.footer-description {
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-neon);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

/* Navigation Lists */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-cyan);
    padding-left: 4px;
}

/* Contact Column */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.contact-item .icon {
    font-size: 1rem;
    margin-top: 2px;
}

.contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent-cyan);
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

/* Footer Bottom Bar */
.footer-bottom {
    background: #020304;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 0;
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--accent-cyan);
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 550px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .bottom-container {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}
/* Scroll Animation Helper */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive Styling */
@media (max-width: 768px) {
    .hamburger { display: block; }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 11, 16, 0.95);
        flex-direction: column;
        padding: 2rem 0;
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.4s ease-in-out;
    }

    .nav-links.active {
        clip-path: circle(140% at 100% 0);
    }

    .hero h1 { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
}