* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: #1a1a2e; line-height: 1.6; background: #fafafa; }
header { background: #fff; padding: 1rem 2rem; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.logo { font-size: 1.3rem; font-weight: 800; color: #1a1a2e; }
.logo-sub { font-size: 0.75rem; font-weight: 400; color: #64748b; display: block; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { text-decoration: none; color: #444; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #2563eb; }
.cta-btn { background: #2563eb; color: #fff !important; padding: 0.6rem 1.2rem; border-radius: 6px; text-decoration: none; font-weight: 600; transition: background 0.2s; }
.cta-btn:hover { background: #1d4ed8; }
.hero { background: linear-gradient(135deg, #1a1a2e 0%, #2563eb 100%); color: #fff; padding: 5rem 2rem; text-align: center; }
.hero-label { background: rgba(37,99,235,0.3); border: 1px solid rgba(37,99,235,0.5); display: inline-block; padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.8rem; margin-bottom: 1.5rem; color: #93c5fd; }
.hero h1 { font-size: 2.6rem; margin-bottom: 1rem; font-weight: 800; line-height: 1.2; }
.hero p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.btn-primary { background: #f59e0b; color: #1a1a2e; padding: 0.9rem 1.8rem; border-radius: 6px; text-decoration: none; font-weight: 700; border: none; cursor: pointer; font-size: 1rem; display: inline-block; }
.btn-secondary { background: transparent; color: #fff; padding: 0.9rem 1.8rem; border-radius: 6px; text-decoration: none; font-weight: 600; border: 2px solid rgba(255,255,255,0.5); display: inline-block; }
.hero-trust { font-size: 0.95rem; opacity: 0.9; }
.services, .about, .contact { padding: 4rem 2rem; max-width: 1100px; margin: 0 auto; }
.services h2, .about h2, .contact h2 { font-size: 2rem; margin-bottom: 2rem; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card { background: #fff; padding: 1.8rem; border-radius: 10px; border: 1px solid #e2e8f0; transition: transform 0.2s, box-shadow 0.2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.service-card h3 { color: #2563eb; margin-bottom: 0.8rem; font-size: 1.1rem; }
.service-card p { font-size: 0.95rem; color: #555; }
.about { background: #f8fafc; border-radius: 16px; margin-top: 2rem; }
.about-content p { font-size: 1.05rem; color: #444; margin-bottom: 1rem; max-width: 800px; }
.about-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; margin-top: 1.5rem; }
.about-badges span { background: #eff6ff; color: #2563eb; padding: 0.5rem 1rem; border-radius: 6px; font-weight: 600; font-size: 0.9rem; }
.contact { background: #f8fafc; border-radius: 16px; margin-top: 2rem; }
#estimate-form { display: flex; flex-direction: column; gap: 1rem; max-width: 500px; margin: 0 auto 2rem; }
#estimate-form input, #estimate-form select, #estimate-form textarea { padding: 0.8rem; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 1rem; width: 100%; }
#estimate-form textarea { resize: vertical; min-height: 120px; }
.contact-direct { text-align: center; font-size: 0.95rem; color: #444; }
.contact-direct a { color: #2563eb; font-weight: 600; }
.contact-direct p { margin-bottom: 0.4rem; }
footer { background: #1a1a2e; color: #94a3b8; text-align: center; padding: 2rem; margin-top: 3rem; }
footer p { margin-bottom: 0.4rem; font-size: 0.9rem; }
@media (max-width: 768px) { .nav-links { display: none; } .hero h1 { font-size: 2rem; } }
