.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.hero { padding: clamp(54px, 8vw, 100px) 0; background: radial-gradient(circle at 20% 20%, rgba(249,115,22,.16), transparent 30%), #fff; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.eyebrow { color: var(--cit-orange-dark); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
h1 { margin: 12px 0 18px; font-size: clamp(38px, 6vw, 68px); line-height: .98; letter-spacing: -0.05em; }
h2 { margin: 0 0 14px; font-size: clamp(28px, 4vw, 44px); line-height: 1.08; letter-spacing: -0.04em; }
h3 { margin: 0 0 8px; }
.lead { font-size: 20px; color: #475569; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border: 1px solid var(--cit-border); border-radius: 999px; color: var(--cit-ink); background: #fff; font-weight: 800; text-decoration: none; }
.card { background: var(--cit-card); border: 1px solid var(--cit-border); border-radius: var(--cit-radius); box-shadow: var(--cit-shadow); padding: 24px; }
.audit-card { padding: 28px; }
.audit-form { display: grid; gap: 14px; }
.audit-form label { display: grid; gap: 6px; font-weight: 800; font-size: 14px; }
.audit-form input { width: 100%; min-height: 48px; border: 1px solid var(--cit-border); border-radius: 12px; padding: 0 14px; font-size: 16px; }
.form-note { color: var(--cit-muted); font-size: 13px; }
.form-message { display: none; padding: 14px; border-radius: 14px; font-weight: 700; }
.form-message.is-visible { display: block; }
.form-message.success { color: #14532d; background: #dcfce7; }
.form-message.error { color: #7f1d1d; background: #fee2e2; }
.section { padding: clamp(48px, 7vw, 86px) 0; }
.section.alt { background: #fff; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.check-list { padding: 0; margin: 18px 0 0; list-style: none; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; color: #475569; }
.check-list li:before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--cit-orange-dark); font-weight: 900; }
.steps { counter-reset: steps; display: grid; gap: 16px; }
.step { counter-increment: steps; display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start; }
.step:before { content: counter(steps); display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: #fff; background: var(--cit-orange); font-weight: 900; }
@media (max-width: 900px) { .hero-grid, .grid-3 { grid-template-columns: 1fr; } }
