.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0;
    background: #fff;
    z-index: 10;
}
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-3); text-decoration: none; }
.nav-links a:hover { color: var(--orange); }

.hero { padding: 80px 20px 70px; text-align: center; background: linear-gradient(135deg, #fff 0%, var(--orange-bg) 100%); }
.hero-tag { display: inline-block; background: var(--orange-bg); color: var(--orange); font-size: 13px; font-weight: 700; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; border: 1px solid #ffd4a8; }
.hero h1 { font-size: 44px; font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: 18px; color: var(--text-3); max-width: 560px; margin: 0 auto 36px; line-height: 1.6; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-btns .btn { padding: 14px 32px; font-size: 16px; }

.steps { padding: 70px 20px; max-width: 860px; margin: 0 auto; }
.section-label { text-align: center; font-size: 13px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.section-title { text-align: center; font-size: 30px; font-weight: 800; margin-bottom: 48px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { text-align: center; padding: 32px 24px; background: #fff; border: 1px solid var(--border); border-radius: 16px; position: relative; }
.step-num { width: 40px; height: 40px; background: var(--orange); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; margin: 0 auto 16px; }
.step-icon { font-size: 36px; margin-bottom: 14px; }
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-3); line-height: 1.6; }

.benefits { background: var(--orange-bg); padding: 70px 20px; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.benefit { background: #fff; border-radius: 14px; padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.benefit-icon { width: 44px; height: 44px; background: var(--orange-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.benefit h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.benefit p { font-size: 13px; color: var(--text-3); line-height: 1.5; }

.cta { padding: 80px 20px; text-align: center; background: #fff; }
.cta h2 { font-size: 32px; font-weight: 800; margin-bottom: 14px; }
.cta p { font-size: 16px; color: var(--text-3); margin-bottom: 32px; }
.cta .btn { padding: 16px 40px; font-size: 17px; }

footer { text-align: center; padding: 24px; color: var(--text-3); font-size: 13px; border-top: 1px solid var(--border); }

@media (max-width: 640px) {
    .nav { padding: 14px 16px; }
    .nav-links { gap: 12px; }
    .hero h1 { font-size: 28px; }
    .steps-grid { grid-template-columns: 1fr; }
}
