/* Smooth Scroll */
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Montserrat', sans-serif; background: #0b1c2d; color: #fff; line-height: 1.6; }
.container { width: 90%; max-width: 1200px; margin: auto; }
.header { background: rgba(8, 20, 32, 0.95); backdrop-filter: blur(10px); padding: 10px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.1); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { height: 80px; transition: transform 0.3s ease; }
.logo:hover { transform: scale(1.05); }
nav a { margin: 0 15px; color: #fff; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: color 0.3s ease; }
nav a:hover { color: #3ad03a; }
.btn-primary { background: #3ad03a; color: #000; padding: 12px 24px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block; transition: all 0.3s ease; border: none; cursor: pointer; }
.btn-primary:hover { background: #2fb92f; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(58, 208, 58, 0.4); }
.btn-primary.large { padding: 16px 40px; font-size: 1.1rem; }
.hero { background: linear-gradient(rgba(11, 28, 45, 0.8), rgba(11, 28, 45, 0.8)), url('https://images.unsplash.com/photo-1532996122724-e3c354a0b15b?auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; text-align: center; padding: 160px 20px; }
.hero h1 { font-size: 3.5rem; margin-bottom: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: -1px; }
.hero p { font-size: 1.5rem; margin-bottom: 30px; color: #3ad03a; }
.section { padding: 100px 0; text-align: center; }
.section h2 { font-size: 2.5rem; margin-bottom: 50px; position: relative; }
.section h2::after { content: ''; width: 60px; height: 4px; background: #3ad03a; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); }
.section.dark { background: #081420; }
.grid { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); margin-top: 40px; }
.card { background: #12273c; padding: 40px 30px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.05); transition: all 0.4s ease; }
.card:hover { transform: translateY(-10px); background: #162e46; border-color: #3ad03a; }
.card h3 { color: #3ad03a; margin-bottom: 15px; }
.feature { font-size: 1.2rem; font-weight: 600; padding: 20px; background: rgba(255,255,255,0.03); border-radius: 10px; }
.form-wrapper { max-width: 600px; margin: 0 auto; background: #12273c; padding: 40px; border-radius: 20px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; margin-bottom: 20px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: #0b1c2d; color: #fff; font-family: inherit; box-sizing: border-box; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid #3ad03a; }
footer { background: #050d16; padding: 40px 20px; text-align: center; font-size: 14px; border-top: 1px solid rgba(255,255,255,0.05); }
@media (max-width: 768px) { .hero h1 { font-size: 2.5rem; } .nav-container { flex-direction: column; gap: 20px; } nav a { margin: 0 10px; } }