* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8fafc; color: #1e293b; line-height: 1.6;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
nav {
    background: #fff; border-bottom: 1px solid #e2e8f0;
    padding: 16px 0; position: sticky; top: 0; z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo {
    font-size: 24px; font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    text-decoration: none;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: #64748b; font-weight: 500; font-size: 15px; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #6366f1; }
.hero {
    text-align: center; padding: 100px 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
}
.hero h1 { font-size: 48px; font-weight: 800; margin-bottom: 16px; letter-spacing: -1px; }
.hero p { font-size: 18px; opacity: 0.9; max-width: 600px; margin: 0 auto 32px; }
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 8px;
    font-weight: 600; text-decoration: none; transition: all 0.2s;
}
.btn-primary { background: #fff; color: #6366f1; }
.btn-primary:hover { background: #f1f5f9; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.section { padding: 80px 0; }
.section h2 { font-size: 32px; font-weight: 700; text-align: center; margin-bottom: 16px; }
.section .subtitle { text-align: center; color: #64748b; margin-bottom: 48px; font-size: 16px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
    background: #fff; border-radius: 12px; padding: 32px;
    border: 1px solid #e2e8f0; transition: all 0.2s;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.card-icon { width: 48px; height: 48px; background: linear-gradient(135deg, #6366f1, #8b5cf6); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.card p { color: #64748b; font-size: 14px; }
footer { background: #1e293b; color: #94a3b8; padding: 32px 0; text-align: center; font-size: 14px; }
footer a { color: #6366f1; text-decoration: none; }
.page-header {
    text-align: center; padding: 80px 20px 40px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}
.page-header h1 { font-size: 40px; font-weight: 700; margin-bottom: 8px; letter-spacing: -1px; }
.page-header p { color: #64748b; font-size: 16px; }
.content-section { padding: 60px 0; }
.service-item {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 24px 0; border-bottom: 1px solid #e2e8f0;
}
.service-item:last-child { border-bottom: none; }
.service-num { font-size: 32px; font-weight: 800; color: #6366f1; min-width: 50px; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; text-align: center; }
.stat { background: #fff; padding: 32px; border-radius: 12px; border: 1px solid #e2e8f0; }
.stat-num { font-size: 36px; font-weight: 800; color: #6366f1; }
.stat-label { color: #64748b; font-size: 14px; margin-top: 4px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 6px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px; border: 1px solid #e2e8f0; border-radius: 8px;
    font-size: 14px; font-family: inherit;
}
.form-group textarea { min-height: 120px; resize: vertical; }
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .nav-links { gap: 16px; }
}
