/* --- Global Reset & Variables --- */
:root {
    --bg-main: #0B0F19;
    --bg-surface: #161D30;
    --bg-surface-light: #222B45;
    --accent: #10B981; 
    --accent-hover: #059669;
    --text-primary: #F9FAFB;
    --text-muted: #9CA3AF;
    --border: rgba(255, 255, 255, 0.08);
}

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

html { 
    scroll-behavior: smooth; 
}

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

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

/* --- Logo Styling --- */
.logo { 
    display: flex; 
    align-items: center; 
}

.logo-img { 
    height: 60px; 
    width: auto; 
    object-fit: contain;
    object-position: left center;
    filter: brightness(1.1) contrast(1.1);
    display: block;
}

/* --- Buttons --- */
.btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    padding: 10px 20px; 
    font-weight: 600; 
    border-radius: 8px; 
    transition: all 0.2s ease; 
    text-decoration: none; 
    font-size: 14px;
}

.btn-primary { 
    background-color: var(--accent); 
    color: #000; 
}

.btn-primary:hover { 
    background-color: var(--accent-hover); 
    transform: translateY(-2px); 
}

.btn-secondary { 
    border: 1px solid var(--border); 
    color: var(--text-primary); 
    background: rgba(255, 255, 255, 0.03); 
}

.btn-text { 
    color: var(--accent); 
    padding-left: 12px; 
    text-decoration: none; 
    font-weight: 600;
}

/* --- Header --- */
.site-header { 
    border-bottom: 1px solid var(--border); 
    background: rgba(11, 15, 25, 0.95); 
    backdrop-filter: blur(12px); 
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 100; 
}

.header-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 80px; 
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav a { 
    color: var(--text-muted); 
    text-decoration: none; 
    margin-left: 24px; 
    font-size: 14px; 
    transition: color 0.2s; 
    font-weight: 500;
}

.main-nav a:hover { 
    color: var(--text-primary); 
}

/* --- Hero Section --- */
.hero-section { 
    padding: 160px 0 80px 0; 
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%); 
}

.hero-container { 
    display: grid; 
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 48px; 
    align-items: center; 
}

.badge { 
    display: inline-block; 
    padding: 6px 14px; 
    background: rgba(16, 185, 129, 0.1); 
    color: var(--accent); 
    border: 1px solid rgba(16, 185, 129, 0.2); 
    border-radius: 50px; 
    font-size: 12px; 
    margin-bottom: 20px; 
    font-weight: 600;
}

.hero-content h1 { 
    font-size: 48px; 
    line-height: 1.1; 
    margin-bottom: 24px; 
}

.hero-lead { 
    font-size: 18px; 
    color: var(--text-muted); 
    margin-bottom: 32px; 
}

.hero-stats { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}

.stat-card { 
    background: var(--bg-surface); 
    border: 1px solid var(--border); 
    padding: 24px; 
    border-radius: 12px; 
}

.stat-number { 
    display: block; 
    font-size: 36px; 
    font-weight: 700; 
    color: var(--accent); 
}

/* --- Sections --- */
.verticals-section, .partners-section { 
    padding: 80px 0; 
    border-top: 1px solid var(--border); 
}

.section-title { 
    text-align: center; 
    margin-bottom: 48px; 
}

.verticals-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 24px; 
}

.vertical-card { 
    background: var(--bg-surface); 
    border: 1px solid var(--border); 
    border-radius: 12px; 
    padding: 32px; 
}

.card-list { 
    list-style: none; 
    color: var(--text-muted); 
    margin-top: 15px; 
}

.card-list li::before { 
    content: "→"; 
    color: var(--accent); 
    margin-right: 10px; 
}

/* --- Partners --- */
.logo-cloud { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px; 
}

.client-logo { 
    background: var(--bg-surface); 
    border: 1px solid var(--border); 
    padding: 12px 20px; 
    border-radius: 8px; 
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Footer --- */
.main-footer { 
    background: #070A12; 
    border-top: 1px solid var(--border); 
    padding: 60px 0 30px 0; 
}

.footer-top { 
    display: flex; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    gap: 40px; 
    margin-bottom: 40px; 
}

.footer-brand .logo-img { height: 50px; margin-bottom: 15px; }

.footer-contact h4 { font-size: 14px; margin-bottom: 10px; }
.footer-email { color: var(--accent); text-decoration: none; font-weight: 600; }

.linkedin-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface-light);
    border-radius: 8px;
    margin-top: 12px;
}
.linkedin-btn svg { width: 18px; height: 18px; fill: var(--text-muted); }

.footer-divider { border: 0; height: 1px; background: var(--border); margin-bottom: 20px; }
.footer-bottom { display: flex; justify-content: space-between; color: var(--text-muted); font-size: 12px; flex-wrap: wrap; gap: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; margin-left: 15px; }

/* --- MOBILE OPTIMIZATIONS --- */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 10px;
    }

    .logo-img {
        height: 45px; /* Smaller logo for mobile */
    }

    .main-nav {
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .main-nav a {
        margin-left: 0;
        font-size: 13px;
    }

    .site-header {
        position: absolute; /* Prevents overlap issues on small scrolls */
    }

    .hero-section {
        padding-top: 140px;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }
}