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

:root {
    --navy: #0A192F;
    --dark-bg: #0F0F0F;
    --darker-bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --cyan: #00E5FF;
    --cyan-glow: rgba(0, 229, 255, 0.3);
    --white: #FFFFFF;
    --text-primary: #E2E8F0;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --border: rgba(0, 229, 255, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(0, 229, 255, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="8" fill="%2300E5FF" opacity="0.5"/><circle cx="10" cy="10" r="3" fill="%23FFFFFF"/></svg>') 10 10, auto;
}

a, button, .btn, .quick-reply, .chatbot-toggle {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%2300E5FF" opacity="0.7"/><circle cx="12" cy="12" r="4" fill="%23FFFFFF"/></svg>') 12 12, pointer;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan-glow);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.nav-menu a:hover {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan-glow);
}

.nav-cta {
    background: var(--cyan);
    color: var(--dark-bg) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    box-shadow: 0 0 20px var(--cyan-glow);
}

.nav-cta:hover {
    background: #00C4DD;
    color: var(--dark-bg) !important;
    box-shadow: 0 0 30px var(--cyan-glow);
    text-shadow: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1.2rem 3rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 30px var(--cyan-glow);
}

.btn-primary:hover {
    background: #00C4DD;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.5);
}

.btn-outline {
    background: var(--glass-bg);
    color: var(--cyan);
    border: 2px solid var(--cyan);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 30px var(--cyan-glow);
}

.btn-full {
    width: 100%;
}

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.glass-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, rgba(0, 229, 255, 0.02) 70%);
    backdrop-filter: blur(60px);
    border: 1px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 100px rgba(0, 229, 255, 0.2);
}

.orb-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Section Styles */
section {
    padding: 8rem 0;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--cyan);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Strategic Intelligence Section */
.intelligence {
    background: var(--darker-bg);
    position: relative;
}

.intelligence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.intelligence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.intelligence-card {
    padding: 3rem;
    transition: all 0.4s;
    position: relative;
}

.intelligence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 229, 255, 0.3);
    border-color: var(--cyan);
    background: rgba(0, 229, 255, 0.08);
}

.card-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cyan);
    opacity: 0.3;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.intelligence-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.intelligence-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Software Identity Section */
.identity {
    background: var(--dark-bg);
}

.identity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-top: 4rem;
}

.identity-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.identity-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 2px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cyan);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.feature-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Section */
.about {
    background: var(--darker-bg);
    color: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 229, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.about .section-label {
    color: var(--cyan);
}

.about .section-title {
    color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    padding: 2.5rem 2rem;
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.3);
    border-color: var(--cyan);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

/* Contact Section */
.contact {
    background: var(--dark-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    margin-top: 4rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact-details {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 2px solid var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cyan);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.contact-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--cyan);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-link:hover {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan-glow);
}

.contact-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
    padding: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    background: var(--glass-bg);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: var(--white);
    padding: 5rem 0 3rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 6rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--cyan);
    text-transform: uppercase;
    font-weight: 700;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .navbar .container {
        padding: 1.5rem 2rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .intelligence-grid {
        grid-template-columns: 1fr;
    }
    
    .identity-content,
    .about-content,
    .contact-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .navbar .container {
        padding: 1.2rem 1.5rem;
    }
    
    section {
        padding: 5rem 0;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .intelligence-card,
    .contact-form {
        padding: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}


/* Chatbot Styles */
.chatbot-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--cyan);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.4);
    transition: all 0.3s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 229, 255, 0.5);
}

.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 2rem;
    width: 400px;
    height: 600px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0, 229, 255, 0.2);
    display: none;
    flex-direction: column;
    z-index: 999;
}

.chatbot-container.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bot-avatar {
    font-size: 1.8rem;
}

.bot-name {
    font-weight: 700;
    font-size: 1rem;
}

.bot-status {
    font-size: 0.8rem;
    color: var(--cyan);
    margin-top: 0.2rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    opacity: 0.7;
}

.chatbot-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.chatbot-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: transparent;
}

.bot-message,
.user-message {
    margin-bottom: 1.5rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-content p {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
    color: var(--text-primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.user-message {
    display: flex;
    justify-content: flex-end;
}

.user-message .message-content p {
    background: var(--cyan);
    color: var(--dark-bg);
    max-width: 80%;
    border-color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quick-reply {
    background: var(--white);
    border: 2px solid var(--cyan);
    color: var(--cyan);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.quick-reply:hover {
    background: var(--cyan);
    color: var(--white);
    transform: translateY(-2px);
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quick-reply {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--cyan);
    color: var(--cyan);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.quick-reply:hover {
    background: var(--cyan);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.chatbot-input {
    display: flex;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    gap: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    padding: 0.9rem 1rem;
    border: 2px solid var(--border);
    background: var(--glass-bg);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 20px var(--cyan-glow);
}

.chatbot-input button {
    background: var(--cyan);
    border: none;
    color: var(--dark-bg);
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    box-shadow: 0 0 20px var(--cyan-glow);
}

.chatbot-input button:hover {
    background: #00C4DD;
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--cyan-glow);
}

/* Chatbot Responsive */
@media (max-width: 640px) {
    .chatbot-container {
        width: calc(100% - 2rem);
        right: 1rem;
        left: 1rem;
        height: 500px;
        bottom: 90px;
    }
    
    .chatbot-toggle {
        width: 56px;
        height: 56px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}
