/* Unify - Clean Modern CSS */

:root {
    --bg: #0a0a0f;
    --bg-alt: #12121a;
    --text: #fff;
    --text-dim: #888;
    --accent: #6366f1;
    --accent2: #8b5cf6;
    --border: rgba(255,255,255,0.08);
}

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

html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

em { font-style: normal; background: linear-gradient(90deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1rem 0; transition: 0.3s; }
.navbar.scrolled { background: rgba(10,10,15,0.9); backdrop-filter: blur(10px); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.4rem; }
.logo-mark { width: 36px; height: 36px; background: linear-gradient(135deg, var(--accent), var(--accent2)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.logo-text { background: linear-gradient(90deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.9rem; color: var(--text-dim); transition: 0.3s; }
.nav-links a:hover { color: var(--text); }

.nav-cta { padding: 0.6rem 1.2rem; background: linear-gradient(135deg, var(--accent), var(--accent2)); border-radius: 8px; font-size: 0.85rem; font-weight: 600; transition: 0.3s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(99,102,241,0.3); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding-top: 80px; }
#hero-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; padding: 2rem; }

.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 30px; font-size: 0.8rem; color: var(--text-dim); margin-bottom: 1.5rem; }
.badge-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; }

.hero-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1rem; }
.hero-title span { display: block; }

.hero-desc { font-size: 1.1rem; color: var(--text-dim); max-width: 500px; margin: 0 auto 2rem; }

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 1.8rem; font-size: 0.95rem; font-weight: 600; border-radius: 10px; transition: 0.3s; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: white; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(99,102,241,0.4); }
.btn-outline { border: 1px solid var(--border); background: transparent; }
.btn-outline:hover { border-color: var(--accent); background: rgba(99,102,241,0.1); }

.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--text-dim); font-size: 0.7rem; }
.scroll-line { width: 1px; height: 40px; background: var(--border); position: relative; }
.scroll-dot { width: 100%; height: 50%; background: var(--accent); animation: scrollMove 2s infinite; }
@keyframes scrollMove { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

/* Sections */
section { padding: 6rem 0; }

.section-header { text-align: center; margin-bottom: 3rem; }
.label { display: inline-block; padding: 0.3rem 0.8rem; background: rgba(99,102,241,0.15); color: var(--accent); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; border-radius: 20px; margin-bottom: 1rem; }
.section-header h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }

/* Services */
.services { background: var(--bg-alt); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }

.service-card { padding: 2rem; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 16px; transition: 0.3s; }
.service-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

.service-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--accent), var(--accent2)); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.service-icon svg { width: 24px; height: 24px; color: white; }

.service-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; height: 300px; display: flex; align-items: center; justify-content: center; }
.visual-ring { width: 250px; height: 250px; border: 2px solid var(--accent); border-radius: 50%; opacity: 0.3; animation: spin 10s linear infinite; }
.visual-core { position: absolute; width: 150px; height: 150px; background: linear-gradient(135deg, var(--accent), var(--accent2)); border-radius: 50%; opacity: 0.6; }
@keyframes spin { to { transform: rotate(360deg); } }

.about-content .label, .about-content h2 { text-align: left; }
.about-content p { color: var(--text-dim); margin: 1rem 0 2rem; }

.stats { display: flex; gap: 2rem; }
.stat { text-align: center; }
.stat .num { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; background: linear-gradient(90deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat .txt { font-size: 0.8rem; color: var(--text-dim); }

/* Work */
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.work-item { border-radius: 16px; overflow: hidden; cursor: pointer; }
.work-img { height: 200px; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.work-img span { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: white; }
.work-item:hover .work-img { transform: scale(1.05); }
.work-item h3 { font-size: 1.1rem; margin: 1rem 0 0.3rem; }
.work-item p { font-size: 0.85rem; color: var(--text-dim); }

/* Testimonials */
.testimonials { background: var(--bg-alt); }
.testi-card { padding: 2rem; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 16px; }
.stars { color: #fbbf24; margin-bottom: 1rem; }
.testi-card p { font-size: 1rem; color: var(--text-dim); margin-bottom: 1.5rem; }
.auth .name { display: block; font-weight: 600; }
.auth .role { font-size: 0.85rem; color: var(--text-dim); }

/* Contact */
.contact { background: var(--bg-alt); text-align: center; }
.contact-content { max-width: 500px; margin: 0 auto; }
.contact-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.contact-content p { color: var(--text-dim); margin-bottom: 2rem; }
.btn-lg { font-size: 1.1rem; padding: 1rem 2rem; }

/* Footer */
footer { padding: 4rem 0 2rem; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--text-dim); margin-top: 1rem; max-width: 250px; }
.footer-links h4 { font-size: 0.8rem; font-weight: 600; margin-bottom: 1rem; color: var(--text); }
.footer-links a { display: block; color: var(--text-dim); font-size: 0.9rem; margin-bottom: 0.5rem; transition: 0.3s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--border); text-align: center; }
.footer-bottom p { font-size: 0.85rem; color: var(--text-dim); }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-visual { display: none; }
    .stats { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}