:root {
    --color-bg-deep: #050B14;
    --color-bg-card: #0A1121;
    --color-primary: #1D4ED8; /* Royal Blue */
    --color-primary-light: #3B82F6;
    --color-accent: #06B6D4; /* Cyan */
    --color-text-main: #F8FAFC;
    --color-text-muted: #94A3B8;
    --color-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: var(--font-main); 
    background-color: var(--color-bg-deep);
    background-image: linear-gradient(to bottom, rgba(5, 11, 20, 0.8) 0%, rgba(5, 11, 20, 0.95) 100%), url('../img/bg_hero.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--color-text-main); 
    line-height: 1.6; 
    overflow-x: hidden; 
}
a { text-decoration: none; color: inherit; }

/* NAVBAR */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; padding: 20px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100; transition: var(--transition-smooth);
    background: rgba(5, 11, 20, 0.8); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo-container { display: flex; align-items: center; gap: 10px; font-size: 26px; font-weight: 900; }
.logo-icon { color: var(--color-primary-light); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 500; color: #E2E8F0; transition: 0.3s; }
.nav-links a:hover { color: var(--color-primary-light); }

.btn-primary {
    background: var(--color-primary); color: white; padding: 14px 32px; border-radius: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition-smooth); display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--color-primary-light); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3); }

/* FOOTER */
.footer {
    background: #02060f; border-top: 1px solid var(--color-border); padding: 80px 5% 40px; margin-top: 80px;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; margin-bottom: 60px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer-col h4 { font-size: 18px; margin-bottom: 25px; color: white; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--color-text-muted); transition: 0.3s; }
.footer-col ul li a:hover { color: var(--color-primary-light); padding-left: 5px; }

/* HERO SECTIONS */
.page-hero {
    padding: 180px 5% 100px; text-align: center; background: radial-gradient(circle at top, rgba(29, 78, 216, 0.15), transparent 60%);
}
.page-hero h1 { font-size: 54px; font-weight: 900; margin-bottom: 20px; }
.page-hero p { font-size: 18px; color: var(--color-text-muted); max-width: 700px; margin: 0 auto 40px; }

/* SECTIONS */
.section { padding: 100px 5%; max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 40px; font-weight: 800; margin-bottom: 15px; }
.section-title p { color: var(--color-text-muted); font-size: 18px; }

/* CARDS */
.card {
    background: rgba(10, 17, 33, 0.7); 
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border); 
    border-radius: 16px; 
    padding: 40px; 
    transition: var(--transition-smooth);
}
.card:hover { transform: translateY(-5px); border-color: rgba(59, 130, 246, 0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

/* TRUSTED LOGOS */
.client-logos {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; opacity: 0.5; filter: grayscale(100%); transition: 0.3s;
}
.client-logos:hover { opacity: 1; filter: grayscale(0%); }
.client-logos img { height: 50px; object-fit: contain; }
