:root { --brand: #16a34a; --brand-dark: #15803d; --ink: #111827; --muted: #6b7280; --line: #e5e7eb; --soft: #f0fdf4; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, system-ui, sans-serif; color: var(--ink); background: #fff; }
a { color: inherit; }
.nl-container { width: min(1120px, calc(100% - 3rem)); margin: 0 auto; }
.nl-nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nl-logo { display: inline-flex; align-items: center; gap: .55rem; font-weight: 800; font-size: 1.15rem; text-decoration: none; letter-spacing: -.03em; }
.nl-logo img { width: 36px; height: 36px; object-fit: contain; }
.nl-logo span { color: var(--brand); }
.nl-nav-links { display: flex; gap: 1.75rem; font-size: .9rem; color: #4b5563; }
.nl-nav-links a { text-decoration: none; }
.nl-nav-links a:hover { color: var(--brand-dark); }
.nl-button { display: inline-flex; justify-content: center; align-items: center; gap: .5rem; min-height: 50px; padding: .8rem 1.35rem; border: 1px solid transparent; border-radius: .75rem; background: var(--brand); color: #fff; font-weight: 750; text-decoration: none; transition: .2s ease; }
.nl-button:hover { background: var(--brand-dark); transform: translateY(-2px); }
.nl-button--outline { border-color: #d1d5db; background: #fff; color: #1f2937; }
.nl-button--outline:hover { border-color: var(--brand); background: var(--soft); color: var(--brand-dark); }
.nl-hero { padding: 5.5rem 0 5rem; background: radial-gradient(circle at 100% 0, #dcfce7 0, transparent 38%), #fff; }
.nl-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 4rem; }
.nl-eyebrow { display: inline-flex; margin: 0 0 1.25rem; padding: .45rem .75rem; border-radius: 99px; background: #dcfce7; color: #166534; font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.nl-hero h1 { max-width: 720px; margin: 0 0 1.25rem; font-size: clamp(2.45rem, 5vw, 4.6rem); line-height: 1.05; letter-spacing: -.055em; }
.nl-hero p { max-width: 630px; margin: 0; color: var(--muted); font-size: 1.15rem; line-height: 1.65; }
.nl-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.nl-trust { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin: 1.7rem 0 0; color: #4b5563; font-size: .9rem; }
.nl-trust span::before { content: '✓'; margin-right: .45rem; color: var(--brand); font-weight: 900; }
.nl-preview { overflow: hidden; border: 1px solid #dcfce7; border-radius: 1.5rem; background: #fff; box-shadow: 0 25px 60px rgba(22, 101, 52, .12); transform: rotate(2deg); }
.nl-preview img { display: block; width: 100%; aspect-ratio: 1.2; object-fit: cover; }
.nl-section { padding: 5.5rem 0; }
.nl-section--soft { background: #f8fafc; }
.nl-section-header { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.nl-section-header h2 { margin: 0 0 .9rem; font-size: clamp(2rem, 3vw, 3rem); letter-spacing: -.04em; }
.nl-section-header p { margin: 0; color: var(--muted); line-height: 1.65; }
.nl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.nl-card { padding: 1.8rem; border: 1px solid var(--line); border-radius: 1.1rem; background: #fff; }
.nl-card-icon { display: grid; width: 45px; height: 45px; place-items: center; margin-bottom: 1.2rem; border-radius: .8rem; background: #dcfce7; color: var(--brand-dark); font-size: 1.25rem; font-weight: 900; }
.nl-card h3 { margin: 0 0 .65rem; font-size: 1.15rem; }
.nl-card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: .95rem; }
.nl-process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: process; }
.nl-step { position: relative; padding: 1.4rem 0 0 4.15rem; counter-increment: process; }
.nl-step::before { content: '0' counter(process); position: absolute; top: 0; left: 0; color: #bbf7d0; font-size: 3rem; font-weight: 900; letter-spacing: -.1em; }
.nl-step h3 { margin: 0 0 .55rem; }
.nl-step p { margin: 0; color: var(--muted); line-height: 1.6; font-size: .95rem; }
.nl-cta { padding: 4.75rem 2rem; border-radius: 1.5rem; background: linear-gradient(135deg, #166534, #16a34a); text-align: center; color: #fff; }
.nl-cta h2 { max-width: 700px; margin: 0 auto .8rem; font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.04em; }
.nl-cta p { max-width: 620px; margin: 0 auto; color: #dcfce7; line-height: 1.65; }
.nl-cta .nl-button { margin-top: 1.75rem; background: #fff; color: #166534; }
.nl-cta .nl-button:hover { background: #f0fdf4; }
.nl-footer { padding: 2rem 0; color: #6b7280; font-size: .85rem; }
.nl-footer-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); padding-top: 1.5rem; }
@media (max-width: 800px) { .nl-nav-links { display: none; } .nl-hero { padding-top: 3.25rem; } .nl-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; } .nl-preview { max-width: 520px; margin: 0 auto; transform: none; } .nl-grid, .nl-process { grid-template-columns: 1fr; } }
@media (max-width: 500px) { .nl-container { width: min(100% - 2rem, 1120px); } .nl-nav > .nl-button { display: none; } .nl-section { padding: 4rem 0; } .nl-footer-row { align-items: flex-start; flex-direction: column; } }
