:root {
    --bg-base: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --color-cyan: #0ea5e9;
    --color-green: #10b981;
    --color-purple: #8b5cf6;
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-border: rgba(255, 255, 255, 0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed; top: 0; left: 0; border-radius: 50%;
    pointer-events: none; z-index: 9999;
}
.cursor-dot {
    width: 8px; height: 8px; background: var(--color-cyan);
    transform: translate(-50%, -50%);
}
.cursor-outline {
    width: 40px; height: 40px; border: 2px solid var(--color-green);
    transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s;
}

/* Deep Animated Background */
.animated-bg {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1; overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f8fafc 100%);
}
.gradient-mesh {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(14, 165, 233, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 40s linear infinite;
}
@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}
.morph-shape {
    position: absolute; filter: blur(80px); opacity: 0.55;
    animation: morphFloat 25s infinite alternate ease-in-out;
}
.shape-1 {
    width: 55vw; height: 55vw; background: radial-gradient(circle, var(--color-cyan) 0%, transparent 70%);
    top: -15vh; left: -15vw;
}
.shape-2 {
    width: 50vw; height: 50vw; background: radial-gradient(circle, var(--color-green) 0%, transparent 70%);
    bottom: -15vh; right: -15vw; animation-delay: -8s;
}
.shape-3 {
    width: 40vw; height: 40vw; background: radial-gradient(circle, var(--color-purple) 0%, transparent 70%);
    top: 35vh; left: 35vw; animation-delay: -15s;
}
@keyframes morphFloat {
    0% { transform: translate(0,0) scale(1) rotate(0deg); }
    33% { transform: translate(5vw,-5vh) scale(1.1) rotate(45deg); }
    66% { transform: translate(-3vw,8vh) scale(0.9) rotate(90deg); }
    100% { transform: translate(-8vw,-3vh) scale(1.05) rotate(135deg); }
}

/* Header */
.navbar {
    position: fixed; top: 0; width: 100%;
    backdrop-filter: blur(20px); background: rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.7); z-index: 100;
}
.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 20px 40px;
    display: flex; justify-content: space-between; align-items: center;
}
.logo { display: flex; align-items: center; gap: 12px; cursor: none; }
.brand-logo { max-height: 50px; mix-blend-mode: multiply; }
#fallback-logo { max-height: 50px; }
.brand-name {
    font-size: 1.6rem; font-weight: 900; letter-spacing: 2px;
    background: linear-gradient(90deg, var(--color-green), var(--color-cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 40px; }
.nav-link {
    text-decoration: none; color: var(--text-secondary);
    font-weight: 600; font-size: 1rem; transition: color 0.3s; cursor: none;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.lang-switcher { display: flex; gap: 15px; align-items: center; }
.lang-btn {
    background: none; border: none; font-family: inherit; font-size: 0.9rem; font-weight: 800;
    color: var(--text-secondary); transition: 0.3s; cursor: none;
}
.lang-btn.active, .lang-btn:hover { color: var(--color-green); }
.lang-sep { width: 1.5px; height: 16px; background: #cbd5e1; }

/* Buttons & Utils */
.title-gradient {
    background: linear-gradient(135deg, var(--text-primary), var(--color-cyan), var(--color-green));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.btn-glow {
    background: linear-gradient(90deg, var(--color-cyan), var(--color-green));
    color: white; padding: 18px 40px; border-radius: 40px; font-weight: 700;
    text-decoration: none; display: inline-block; cursor: none;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4); transition: 0.4s;
}
.btn-glow:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(14, 165, 233, 0.6); }
.btn-outline {
    color: var(--text-primary); padding: 18px 40px; border-radius: 40px; font-weight: 700;
    text-decoration: none; border: 2px solid var(--text-primary); transition: 0.4s; cursor: none;
}
.btn-outline:hover { background: var(--text-primary); color: white; }

.section-container { max-width: 1300px; margin: 0 auto; padding: 100px 40px; }
.section-header { margin-bottom: 70px; text-align: center; }
.section-header h2 { font-size: 3.5rem; font-weight: 900; margin-bottom: 20px; line-height: 1.2; }
.section-header p { font-size: 1.25rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto; }

/* Mega Hero */
.mega-hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center; padding-top: 100px;
}
.hero-wrapper {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1400px; width: 100%; padding: 0 40px; gap: 60px;
}
.hero-text-box { flex: 1.2; }
.pill-badge {
    display: inline-block; padding: 10px 25px; margin-bottom: 30px;
    background: rgba(14, 165, 233, 0.1); border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 40px; color: var(--color-cyan); font-weight: 800; font-size: 0.9rem; letter-spacing: 2px;
}
.hero-title { font-size: 5.5rem; font-weight: 900; line-height: 1.05; margin-bottom: 30px; }
.hero-subtext { font-size: 1.35rem; color: var(--text-secondary); margin-bottom: 50px; line-height: 1.6; }
.hero-buttons { display: flex; gap: 25px; }

.hero-floating-elements { flex: 1; min-height: 600px; position: relative; }
.float-card {
    position: absolute; background: rgba(255,255,255,0.65); backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.9); border-radius: 24px; padding: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.06); text-align: center; width: 220px;
}
.float-card .icon { font-size: 3rem; margin-bottom: 15px; }
.float-card .desc { font-weight: 700; font-size: 1.1rem; color: var(--text-primary); }
.card-a { top: 5%; right: 5%; animation: floatY 7s ease-in-out infinite; }
.card-b { bottom: 15%; left: 0%; animation: floatY 9s ease-in-out infinite reverse; }
.card-c { top: 45%; right: -10%; animation: floatY 8s ease-in-out infinite 2s; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-25px); } }

/* Marquee */
.marquee-section {
    width: 100%; padding: 40px 0; overflow: hidden;
    background: rgba(255,255,255,0.5); backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255,255,255,0.6); border-bottom: 1px solid rgba(255,255,255,0.6);
}
.marquee-track { display: flex; width: max-content; animation: scrollMarquee 40s linear infinite; }
.marquee-content { font-size: 1.8rem; font-weight: 900; color: var(--text-secondary); display: flex; gap: 40px; margin-right: 40px; letter-spacing: 2px; }
.marquee-content span { color: var(--color-cyan); }
@keyframes scrollMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Activity Section */
.activity-section { padding-top: 100px; padding-bottom: 50px; margin-top: 20px;}
.activity-list {
    list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px; margin-top: 50px; padding: 0;
}
.activity-list li {
    background: var(--glass-bg); backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border); border-radius: 20px;
    padding: 35px 30px; font-size: 1.35rem; font-weight: 700; color: var(--text-primary);
    display: flex; align-items: center; gap: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.4s;
}
.activity-list li:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(16,185,129,0.1); border-color: rgba(255,255,255,0.9);}
.activity-list .icon { font-size: 2.8rem; }

/* Split Company Section */
.company-split { padding-top: 50px; }
.split-wrapper { display: flex; align-items: center; gap: 60px; }
.split-text { flex: 1; margin-bottom: 20px;}
.split-text p { font-size: 1.35rem; color: var(--text-secondary); margin-bottom: 25px; line-height: 1.7; font-weight: 400;}
.split-image { flex: 1; border-radius: 30px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.1); height: 500px; }
.split-image img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 30px; transition: transform 0.6s ease; filter: contrast(1.1) brightness(1.05);}
.split-image:hover img { transform: scale(1.05); }

/* 3 Cards Section */
.cards-3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.glass-card {
    background: var(--glass-bg); backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border); border-radius: 30px; padding: 45px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: 0.4s;
    display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;
}
.glass-card::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.5s; pointer-events: none; z-index: 0;
}
.glass-card:hover::before { opacity: 1; }
.glass-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 30px 60px rgba(16,185,129,0.12); border-color: rgba(255,255,255,0.9); }
.card-icon-modern { font-size: 3.5rem; margin-bottom: 25px; position:relative; z-index:1; }
.glass-card h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; position:relative; z-index:1;}
.glass-card p { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.6; position:relative; z-index:1;}

/* Timeline */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before {
    content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 4px;
    background: linear-gradient(to bottom, var(--color-cyan), var(--color-green)); border-radius: 4px;
}
.timeline-item { position: relative; margin-bottom: 80px; padding-left: 80px; }
.timeline-dot {
    position: absolute; left: 16px; top: 15px; width: 20px; height: 20px;
    background: white; border: 5px solid var(--color-cyan); border-radius: 50%;
    box-shadow: 0 0 20px var(--color-cyan); z-index: 2;
}
.box-glow {
    background: var(--glass-bg); backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border); border-radius: 30px; padding: 45px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04); transition: 0.4s;
}
.box-glow:hover { box-shadow: 0 20px 50px rgba(14,165,233,0.15); transform: translateX(15px); }
.box-glow h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 15px; color: var(--text-primary); }
.box-glow p { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.7; }

/* Contacts Ultra */
.contact-card { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-row { display: flex; align-items: center; gap: 20px; margin-top: 30px; font-size: 1.2rem; font-weight: 600; }
.contact-row .icon { font-size: 2rem; }
.link-gradient { text-decoration: none; font-weight: 800; background: linear-gradient(90deg, var(--color-cyan), var(--color-green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; cursor: none; }
.contact-form form { display: flex; flex-direction: column; gap: 25px; }
.contact-form input, .contact-form textarea {
    padding: 20px; border: 2px solid var(--glass-border); border-radius: 16px;
    background: rgba(255,255,255,0.6); font-family: inherit; font-size: 1.1rem;
    transition: 0.3s; outline: none; cursor: none; font-weight: 500;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--color-cyan); background: white; box-shadow: 0 10px 20px rgba(14,165,233,0.05); }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(60px) scale(0.95); transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal.show { opacity: 1; transform: translateY(0) scale(1); }

/* Footer */
.cyber-footer { padding: 50px 0; border-top: 1px solid rgba(0,0,0,0.08); margin-top: 50px; }
.footer-flex { display: flex; justify-content: space-between; align-items: center; padding: 0 40px; }
.footer-company-info { display: flex; flex-direction: column; gap: 15px; }
.footer-logo { font-size: 1.8rem; font-weight: 900; letter-spacing: 3px; color: var(--text-primary); }
.footer-details { font-size: 1.05rem; font-weight: 500; color: var(--text-secondary); line-height: 1.7; }
.footer-rights { font-size: 1.1rem; font-weight: 500; color: var(--text-secondary); }

@media(max-width: 1024px) {
    .split-wrapper { flex-direction: column; }
    .split-image { height: 400px; width: 100%;}
    .cards-3-grid { grid-template-columns: 1fr; }
    .hero-wrapper { flex-direction: column; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-floating-elements { min-height: 400px; width: 100%; display: none; }
    .contact-card { grid-template-columns: 1fr; }
    .hero-title { font-size: 3.5rem; }
    .activity-list { grid-template-columns: 1fr; }
    .footer-flex { flex-direction: column; text-align: center; gap: 30px;}
}
