:root {
    --bg-dark: #0a0a0f;
    --bg-card: #14141e;
    --text-main: #f0f0f5;
    --text-muted: #9ba1a6;
    --primary: #4f46e5;
    --secondary: #ec4899;
    --accent: #06b6d4;
    --glass-bg: rgba(20, 20, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Utilities */
.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(79, 70, 229, 0.5);
}
.btn-secondary {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-main);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--text-main);
}
.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}
.btn-block {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo i { color: var(--secondary); }
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
}
.orb-1 {
    top: -10%; left: -10%;
    width: 500px; height: 500px;
    background: var(--primary);
}
.orb-2 {
    bottom: 10%; right: -10%;
    width: 400px; height: 400px;
    background: var(--secondary);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    color: var(--accent);
}
.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}
.hero-cta { display: flex; gap: 16px; }

.hero-visual { position: relative; }
.panel-header {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    border-bottom: 1px solid var(--glass-border);
}
.dots { display: flex; gap: 6px; }
.dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
}
.dots span:nth-child(1) { background: #ff5f56; }
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }
.panel-header .title {
    margin-left: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.hero-img {
    width: 100%;
    display: block;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    opacity: 0.9;
}
.floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}
.floating-card i {
    font-size: 2rem;
    color: var(--accent);
}
.floating-card h4 { font-size: 0.9rem; color: var(--text-muted); }
.floating-card strong { font-size: 1.5rem; }

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Sections Common */
section { padding: 120px 0; }
.section-title { margin-bottom: 64px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 16px; }
.section-title p { color: var(--text-muted); font-size: 1.1rem; }

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
    gap: 24px;
}
.bento-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease;
}
.bento-card:hover { transform: translateY(-5px); }
.large-card { grid-row: span 2; }
.card-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
    transition: opacity 0.5s ease;
}
.bento-card:hover .card-bg { opacity: 0.6; }
.card-content {
    position: relative;
    z-index: 1;
    padding: 32px;
}
.glassmorphism {
    background: linear-gradient(to top, rgba(10,10,15,1), rgba(10,10,15,0));
    padding-top: 80px;
}
.bg-gradient {
    background: linear-gradient(135deg, var(--bg-card), rgba(79, 70, 229, 0.2));
}
.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.card-content i { color: var(--accent); }
.card-content p { color: var(--text-muted); }

/* Functions Grid */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.module-card {
    background: var(--bg-card);
    padding: 32px 24px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}
.module-card:hover { border-color: var(--primary); background: rgba(20,20,30,0.8); }
.icon-wrapper {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 24px;
}
.module-card h4 { font-size: 1.2rem; margin-bottom: 12px; }
.module-card p { color: var(--text-muted); font-size: 0.95rem; }

/* CTA Section */
.cta-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 64px;
}
.cta-text h2 { font-size: 2.5rem; margin-bottom: 24px; }
.cta-text p { color: var(--text-muted); margin-bottom: 32px; font-size: 1.1rem; }
.contact-info { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact-info li { display: flex; align-items: center; gap: 12px; font-size: 1.1rem; }
.contact-info i { color: var(--secondary); }

.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 8px; color: var(--text-muted); }
.form-group input {
    width: 100%;
    padding: 16px;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-group input:focus { outline: none; border-color: var(--primary); }

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
    text-align: center;
}
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-content p { color: var(--text-muted); }

/* Responsive */
@media (max-width: 992px) {
    .hero-content, .cta-box { grid-template-columns: 1fr; }
    .hero-text { text-align: center; }
    .hero-text p { margin: 0 auto 40px; }
    .hero-cta { justify-content: center; }
    .floating-card { left: 20px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-text h1 { font-size: 3rem; }
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .large-card { grid-row: auto; min-height: 400px; }
    .cta-box { padding: 32px; }
    .footer-content { flex-direction: column; gap: 24px; }
}
@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
}
