:root {
    --primary: #2d4739;
    --secondary: #f37021;
    --dark: #121212;
    --light: #ffffff;
    --gray: #f8f9fa;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 25px; }

nav { padding: 20px 0; border-bottom: 1px solid #eee; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { height: 60px; }
.btn-sm { background: var(--primary); color: white; padding: 8px 20px; border-radius: 5px; text-decoration: none; font-size: 0.9rem; }

.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdfdfd 0%, #e8eee8 100%);
    text-align: center;
}
.badge { background: #e1ede6; color: var(--primary); padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 0.8rem; text-transform: uppercase; }
.hero h1 { font-family: 'Montserrat', sans-serif; font-size: 3.5rem; margin: 20px 0; color: var(--primary); line-height: 1.1; }
.text-gradient { color: var(--secondary); }
.hero p { font-size: 1.25rem; color: #555; max-width: 650px; margin: 0 auto 30px auto; }

.btn-primary {
    background: var(--secondary);
    color: white;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(243, 112, 33, 0.2);
    transition: 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(243, 112, 33, 0.3); }

.stats { background: var(--primary); color: white; padding: 40px 0; }
.grid-stats { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; }
.stat-item h3 { font-size: 2.5rem; color: var(--secondary); }

.features { padding: 100px 0; background: var(--gray); }
.section-title { text-align: center; font-family: 'Montserrat', sans-serif; font-size: 2.2rem; margin-bottom: 50px; color: var(--primary); }
.grid-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.f-card { background: white; padding: 40px; border-radius: 15px; transition: 0.3s; border: 1px solid #eee; }
.f-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.icon { font-size: 2.5rem; margin-bottom: 20px; }
.f-card h3 { margin-bottom: 15px; color: var(--primary); }

.cta-final { padding: 100px 0; text-align: center; }
.glass-box {
    background: var(--primary);
    padding: 60px;
    border-radius: 30px;
    color: white;
}
.glass-box h2 { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; margin-bottom: 20px; }
.glass-box p { margin-bottom: 30px; opacity: 0.9; }

footer { background: #1a1a1a; color: white; padding: 60px 0 0 0; }
.footer-grid { display: flex; justify-content: space-between; padding-bottom: 40px; }
.footer-logo { height: 50px; filter: brightness(0) invert(1); margin-bottom: 15px; }
.footer-contact { text-align: right; }
.bottom-bar { border-top: 1px solid #333; padding: 20px; text-align: center; font-size: 0.8rem; opacity: 0.5; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .grid-stats { grid-template-columns: 1fr; gap: 30px; }
    .footer-grid { flex-direction: column; text-align: center; }
    .footer-contact { text-align: center; margin-top: 30px; }
}
