*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
	--brand: #1a56db; --brand-d: #1140a6; --brand-light: #eff6ff;
	--text: #292927; --muted: #7E7E7E; --border: #E0E0E0;
	--bg: #ffffff; --surface: #f9fafb;
	--green: #16a34a; --radius: 12px;
}

body {
	font-family: Verdana, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--text);
	background: var(--bg);
}

h1, h2, h3 { font-family: Verdana, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* NAV */
nav {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
}
.nav-inner {
	max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
	display: flex; align-items: center; gap: 2rem; height: 60px;
}
.nav-logo { font-size: 1.3rem; font-weight: 800; color: var(--brand); letter-spacing: -.5px; }
.nav-logo span { color: var(--text); }
.nav-links { display: flex; gap: 1.5rem; flex: 1; }
.nav-links a { font-size: .9rem; color: var(--muted); transition: color .15s; }
.nav-links a:hover { color: var(--text); }

/* HERO */
.hero {
	max-width: 1100px; margin: 0 auto; padding: 5rem 1.5rem 4rem;
	display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero-badge {
	display: inline-flex; align-items: center; gap: .4rem;
	background: var(--brand-light); color: var(--brand);
	font-size: .78rem; font-weight: 700; padding: .3rem .75rem;
	border-radius: 999px; margin-bottom: 1.25rem;
}
.hero h1 {
	font-size: 2.8rem; font-weight: 800; line-height: 1.15;
	letter-spacing: -.5px; margin-bottom: 1.25rem;
}
.hero h1 em { color: var(--brand); font-style: normal; }
.hero p { font-size: 1.1rem; color: var(--muted); line-height: 1.65; margin-bottom: 2rem; }
.hero-trust { display: flex; gap: 1.25rem; margin-top: .5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--muted); }
.trust-icon { width: 18px; height: 18px; background: var(--green); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon::after { content: '✓'; font-size: 11px; color: #fff; font-weight: 700; }

/* Hero visual */
.hero-visual {
	background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
	padding: 1.5rem; box-shadow: 0 8px 40px rgba(0,0,0,.08);
}
.doc-card {
	background: #fff; border: 1px solid var(--border); border-radius: 10px;
	padding: 1rem 1.25rem; margin-bottom: .75rem;
}
.doc-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: .35rem; }
.doc-name { font-size: .88rem; font-weight: 700; }
.badge { display: inline-block; padding: .2rem .55rem; border-radius: 999px; font-size: .7rem; font-weight: 700; }
.badge-done { background: #dcfce7; color: #15803d; }
.badge-pending { background: #fef9c3; color: #854d0e; }
.badge-sign { background: #dbeafe; color: #1e40af; }
.doc-meta { font-size: .75rem; color: var(--muted); }
.signer-row { display: flex; align-items: center; gap: .5rem; padding: .4rem 0; border-top: 1px solid var(--border); margin-top: .5rem; }
.signer-avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--brand); display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.signer-info { flex: 1; }
.signer-name { font-size: .78rem; font-weight: 600; }
.signer-phone { font-size: .7rem; color: var(--muted); }
.signer-status { font-size: .7rem; }

/* LOGOS */
.logos-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logos-inner { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem; text-align: center; }
.logos-label { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1.5rem; }
.logos-row { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.law-badge {
	display: flex; flex-direction: column; align-items: center; gap: .2rem;
	font-size: .78rem; color: var(--muted);
}
.law-badge strong { font-size: .85rem; color: var(--text); }

/* HOW IT WORKS */
.section { max-width: 1100px; margin: 0 auto; padding: 5rem 1.5rem; }
.section-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); margin-bottom: .75rem; }
.section-title { font-size: 2rem; font-weight: 800; letter-spacing: -.3px; margin-bottom: 1rem; }
.section-sub { font-size: 1rem; color: var(--muted); line-height: 1.6; max-width: 560px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
.step-card { padding: 1.5rem; }
.step-num {
	width: 40px; height: 40px; border-radius: 10px; background: var(--brand);
	color: #fff; font-size: 1.1rem; font-weight: 800;
	display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.step-desc { font-size: .88rem; color: var(--muted); line-height: 1.55; }

/* FEATURES */
.features-bg { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.feat-card {
	background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
	padding: 1.5rem;
}
.feat-icon { font-size: 1.5rem; margin-bottom: .75rem; }
.feat-title { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.feat-desc { font-size: .84rem; color: var(--muted); line-height: 1.55; }

/* STAMP PREVIEW */
.stamp-demo { display: flex; justify-content: center; margin-top: 3.5rem; }
.stamp-page {
	position: relative;
	width: 420px; max-width: 100%; aspect-ratio: 1 / 1.414;
	background: #fff; border: 1px solid var(--border); border-radius: 4px;
	box-shadow: 0 8px 40px rgba(0,0,0,.08);
	padding: 2.5rem 2rem;
}
.stamp-page-line { height: 8px; background: #eceff3; border-radius: 3px; margin-bottom: 10px; }
.stamp-overlay {
	position: absolute; left: 2rem; right: 2rem; bottom: 2rem;
	display: flex; flex-direction: column; gap: .15rem;
}
.stamp-name { font-weight: 700; color: #141e32; font-size: 1rem; }
.stamp-date { font-weight: 700; color: #464646; font-size: .82rem; }
.stamp-status { font-style: italic; color: #16783c; font-size: .78rem; }
.stamp-footer { display: flex; align-items: center; gap: .35rem; margin-top: .5rem; color: #828282; font-size: .68rem; }
.stamp-logo { flex-shrink: 0; }

/* FOOTER */
footer { background: var(--surface); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 2.5rem 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-size: 1.1rem; font-weight: 800; color: var(--brand); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .82rem; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: .78rem; color: var(--muted); width: 100%; text-align: center; padding-top: 1rem; border-top: 1px solid var(--border); }

/* COOKIE BANNER */
.cookie-banner {
	display: none;
	position: fixed; bottom: 1rem; left: 1rem; right: 1rem; max-width: 560px; margin: 0 auto;
	background: #292927; color: #F5F5F5; padding: .85rem 1.1rem; border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0,0,0,.25); z-index: 9999; font-size: .85rem;
	gap: .85rem; align-items: center; flex-wrap: wrap;
}
.cookie-text { flex: 1; line-height: 1.45; }
.cookie-accept {
	background: var(--brand); color: #fff; border: none; padding: .45rem 1.1rem;
	border-radius: 6px; font-weight: 600; cursor: pointer; font-size: .82rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
	.hero { grid-template-columns: 1fr; }
	.hero-visual { display: none; }
	.hero h1 { font-size: 2rem; }
	.steps, .features { grid-template-columns: 1fr; }
	.nav-links { display: none; }
}
