:root {
    --primary: #6b7280;
    --primary-light: #9ca3af;
    --primary-dark: #374151;
    --accent: #2563eb;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-light: #f9fafb;
    --border: #e5e7eb;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; line-height: 1.6; color: var(--text); background: var(--bg); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.nav129 { position: fixed; top: 0; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); z-index: 1000; }
.nav-container129 { max-width: 1000px; margin: 0 auto; padding: 0 20px; height: 60px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo129 { font-size: 18px; font-weight: 700; color: var(--text); }
.nav-menu129 { display: flex; gap: 30px; }
.nav-menu129 a { font-size: 14px; color: var(--text-light); transition: color 0.3s; }
.nav-menu129 a:hover, .nav-menu129 a.active { color: var(--primary-dark); }
.nav-btn129 { padding: 8px 20px; background: var(--accent); color: var(--white) !important; border-radius: 6px; font-size: 14px; font-weight: 500; transition: opacity 0.3s; }
.nav-btn129:hover { opacity: 0.9; }

.hero129 { padding: 120px 20px 60px; background: var(--bg-light); text-align: center; }
.hero-container129 { max-width: 700px; margin: 0 auto; }
.hero129 h1 { font-size: 36px; color: var(--text); margin-bottom: 15px; line-height: 1.3; }
.hero129 h1 span { color: var(--primary); }
.hero129 p { font-size: 16px; color: var(--text-light); margin-bottom: 30px; }
.hero-buttons129 { display: flex; gap: 12px; justify-content: center; }
.btn129 { padding: 12px 24px; border-radius: 6px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.3s; border: none; }
.btn-primary129 { background: var(--accent); color: var(--white); }
.btn-primary129:hover { opacity: 0.9; }
.btn-outline129 { background: var(--bg); color: var(--text); border: 1px solid var(--border); }

.features129 { padding: 60px 20px; background: var(--bg); }
.features-container129 { max-width: 900px; margin: 0 auto; }
.features-grid129 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card129 { padding: 25px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; transition: all 0.3s; }
.feature-card129:hover { border-color: var(--primary-light); box-shadow: var(--shadow-hover); }
.feature-card129 h3 { font-size: 16px; margin-bottom: 8px; color: var(--text); }
.feature-card129 p { font-size: 14px; color: var(--text-light); }

.process129 { padding: 60px 20px; background: var(--bg-light); }
.process-container129 { max-width: 800px; margin: 0 auto; }
.process-grid129 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-card129 { text-align: center; padding: 20px; }
.process-card129 .step { width: 40px; height: 40px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-weight: 600; font-size: 16px; }
.process-card129 h3 { font-size: 14px; margin-bottom: 6px; }
.process-card129 p { font-size: 12px; color: var(--text-light); }

.contact129 { padding: 60px 20px; background: var(--bg); }
.contact-container129 { max-width: 800px; margin: 0 auto; text-align: center; }
.contact-grid129 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.contact-card129 { padding: 25px; background: var(--bg-light); border-radius: 8px; text-align: center; }
.contact-card129 h3 { font-size: 14px; margin-bottom: 8px; }
.contact-card129 p { font-size: 14px; color: var(--primary); font-weight: 500; }

.footer129 { padding: 30px 20px; background: var(--bg-light); border-top: 1px solid var(--border); text-align: center; color: var(--text-light); font-size: 13px; }

@media (max-width: 768px) {
    .nav-menu129 { display: none; }
    .hero129 h1 { font-size: 28px; }
    .features-grid129 { grid-template-columns: 1fr; }
    .process-grid129 { grid-template-columns: repeat(2, 1fr); }
    .contact-grid129 { grid-template-columns: 1fr; }
}
