/* V2 Premium Design System - mikroelterminali.com */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary-bg: #05070a; /* Midnight black */
    --secondary-bg: #0c111a; /* Deep Navy */
    --accent-blue: #0076ff; /* Corporate Blue */
    --accent-cyan: #00e5ff; /* Tech Cyan */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(5, 7, 10, 0.6);
    --gradient-primary: linear-gradient(135deg, #0076ff 0%, #00e5ff 100%);
    --gradient-glow: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    --accent-v16: #ff416c;
    --accent-v17: #ff4b2b;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout Utilities */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section {
    padding: 100px 0;
}

.flex { display: flex; align-items: center; }
.between { justify-content: space-between; }
.gap-2 { gap: 2rem; }

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    gap: 0.75rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 118, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 118, 255, 0.4);
    filter: brightness(1.1);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    padding: 1.25rem 2.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 118, 255, 0.3);
}

.btn-hero:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 118, 255, 0.5);
}

.text-highlight {
    color: var(--accent-cyan);
    font-weight: 800;
}

/* Glass Card refined */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(15, 23, 42, 0.85);
}

/* Navbar Premium */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1.25rem 0;
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--glass-border);
}

/* Dropdown Support */
.nav-item {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 280px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    z-index: 1100;
}

.nav-item:hover .dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.dropdown-link:hover {
    background: rgba(0, 118, 255, 0.1);
    color: var(--text-main);
}

.dropdown-link i {
    width: 20px;
    color: var(--accent-blue);
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
}

.logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

/* Hero Section V2 */
.hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(0, 118, 255, 0.1) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.badge-mikro {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.hero-content h1 {
    font-size: 4.8rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
    opacity: 0.2;
    z-index: -1;
    filter: blur(50px);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 118, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent-blue);
    margin-bottom: 2rem;
}

/* Detailed List */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.check-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check-item i {
    color: var(--accent-cyan);
    margin-top: 0.35rem;
}

/* Footer Premium */
.footer {
    background: #020305;
    padding: 100px 0 50px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 60px;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3.5rem; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin: 0 auto 3rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
}
