/* license.broker */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #f9fafb; color: #111827; font-family: 'Inter', sans-serif; line-height: 1.7; }
.hero { max-width: 700px; margin: 0 auto; padding: 3rem 1.5rem; }
.brand { font-weight: 600; font-size: clamp(2rem, 5vw, 2.5rem); color: #111827; }
.subtitle { font-size: 0.9rem; color: #9ca3af; margin-bottom: 1.5rem; }
.nav-bar { display: flex; gap: 1.5rem; border-bottom: 1px solid #e5e7eb; padding-bottom: 0.75rem; }
.nav-link { font-size: 0.8rem; color: #6b7280; cursor: pointer; text-decoration: none; position: relative; }
.nav-link.active { color: #1d4ed8; }
.nav-link.active::after { content: ''; position: absolute; bottom: -0.75rem; left: 0; right: 0; height: 2px; background: #1d4ed8; }
.services { max-width: 700px; margin: 0 auto; padding: 2rem 1.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.service-card { flex: 1; min-width: 180px; background: #ffffff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.card-accent { width: 100%; height: 3px; background: #1d4ed8; border-radius: 2px; margin-bottom: 1rem; }
.card-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.5rem; }
.card-text { font-size: 0.8rem; color: #6b7280; }
.process { max-width: 700px; margin: 0 auto; padding: 3rem 1.5rem; display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.step { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; position: relative; }
.step-num { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 2rem; color: #1d4ed8; }
.step-label { font-size: 0.8rem; color: #6b7280; }
.check { color: #1d4ed8; font-size: 0.8rem; }
.arrow { font-size: 1.2rem; color: #6b7280; }
.trust { max-width: 700px; margin: 0 auto; padding: 3rem 1.5rem; text-align: center; border-top: 1px solid #e5e7eb; }
.badge { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.shield { width: 16px; height: 20px; background: #dbeafe; border-radius: 2px 2px 8px 8px; border: 1px solid #1d4ed8; }
.badge-text { font-size: 0.7rem; color: #1d4ed8; font-weight: 600; }
.trust-text { font-size: 0.8rem; color: #6b7280; }
.trust-brand { font-size: 0.6rem; color: #9ca3af; display: block; margin-top: 0.5rem; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
