.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.hero {
    background-size: cover;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/img/back.jpg);
    background-position: center;
    /*background: linear-gradient(135deg, var(--black) 0%, var(--orange) 100%);*/
    color: var(--white);
    padding: 140px 0 90px;
}
.hero-badge {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 18px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 22px;
    font-size: 0.9rem;
    font-weight: 500;
}
.hero h1 { font-size: 2.9rem; margin-bottom: 20px; line-height: 1.15; font-weight: 800; }
.hero p { font-size: 1.15rem; margin-bottom: 35px; opacity: 0.93; max-width: 620px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn { padding: 14px 28px; border-radius: 8px; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; font-size: 1rem; transition: all .2s; }
.btn-primary { background: var(--white); color: var(--orange); }
.btn-primary:hover { background: #f0f4ff; }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
.trust-badges { display: flex; gap: 28px; margin-top: 45px; flex-wrap: wrap; }
.badge { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.badge::before {
    content: "✓";
    background: #10b981;
    color: var(--white);
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.stats { background: var(--gray); padding: 55px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.stat-item h3 { font-size: 2.6rem; color: var(--orange); font-weight: 800; }
.stat-item p { color: #64748b; font-size: 0.95rem; margin-top: 4px; }

section { padding: 80px 0; }
section h2 { font-size: 2rem; text-align: center; margin-bottom: 12px; color: #111827; font-weight: 800; }
.section-subtitle { text-align: center; color: #64748b; margin-bottom: 50px; font-size: 1rem; }

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; }
.service-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.service-icon { font-size: 2.6rem; margin-bottom: 16px; }
.service-card h3 { margin-bottom: 10px; color: var(--black); font-size: 1.1rem; }
.service-card p { color: #64748b; font-size: 0.95rem; }

.areas { background: var(--gray); }
.areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.area-item {
    background: var(--white);
    padding: 18px 14px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    font-weight: 500;
    color: var(--black);
    font-size: 0.95rem;
    border: 1px solid #e2e8f0;
}
.area-item::before { content: "📍 "; }

.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 25px; }
.why-card {
    background: var(--white);
    padding: 28px 22px;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid #f1f5f9;
}
.why-icon { font-size: 2.2rem; margin-bottom: 14px; }
.why-card h3 { color: var(--black); font-size: 1rem; margin-bottom: 8px; }
.why-card p { color: #64748b; font-size: 0.9rem; }

.process-section { background: var(--gray); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.process-step { text-align: center; position: relative; }
.step-number {
    width: 52px; height: 52px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    font-weight: 800;
}
.process-step h3 { color: var(--black); margin-bottom: 8px; font-size: 1rem; }
.process-step p { color: #64748b; font-size: 0.9rem; }

.faq-item {
    background: var(--white);
    padding: 26px 28px;
    margin-bottom: 14px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid #f1f5f9;
}
.faq-item h3 { color: var(--black); margin-bottom: 10px; font-size: 1rem; }
.faq-item p { color: #4b5563; font-size: 0.95rem; }

.cta { background: linear-gradient(135deg, var(--black) 0%, var(--orange) 100%); color: var(--white); text-align: center; }
.cta h2 { color: var(--white); margin-bottom: 16px; }
.cta p { margin-bottom: 32px; font-size: 1.1rem; opacity: 0.92; }

footer { background: #1e293b; color: var(--white); padding: 40px 0; text-align: center; }
footer a { color: #94a3b8; text-decoration: none; margin: 0 15px; font-size: 0.9rem; }
footer a:hover { color: var(--white); }

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .stats-grid, .services-grid, .process-grid, .why-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(2,1fr); }
}
