:root { --primary: #09B89D; --bg: #f0fbf8; --dark: #121416; --muted: #6b7280; }
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, Arial, sans-serif; background: var(--bg); color: #101827; }
a { color: inherit; text-decoration: none; }
.layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.sidebar { background: var(--dark); color: white; padding: 24px; }
.logo { font-size: 28px; color: var(--primary); font-weight: 800; margin-bottom: 24px; }
.nav a { display: block; padding: 12px 14px; border-radius: 14px; color: #d6d6d6; margin-bottom: 6px; }
.nav a.active, .nav a:hover { background: rgba(9,184,157,.18); color: white; }
.content { padding: 28px; }
.card { background: white; border-radius: 22px; padding: 22px; box-shadow: 0 18px 40px rgba(16,24,39,.08); margin-bottom: 18px; }
.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.stat { font-size: 34px; font-weight: 800; color: var(--primary); }
.table { width: 100%; border-collapse: collapse; background: white; border-radius: 18px; overflow: hidden; }
.table th, .table td { padding: 14px; border-bottom: 1px solid #edf1f3; text-align: left; }
.table th { color: var(--muted); font-size: 13px; text-transform: uppercase; }
.form-row { margin-bottom: 14px; }
label { display:block; margin-bottom: 6px; color: #374151; font-weight: 700; }
input, textarea, select { width: 100%; border: 1px solid #e5e7eb; border-radius: 14px; padding: 12px 14px; font: inherit; }
button, .button { border: 0; border-radius: 14px; padding: 12px 16px; background: var(--primary); color: white; font-weight: 800; cursor: pointer; }
.button.secondary { background: #111827; }
.login-wrap { max-width: 460px; margin: 80px auto; }
.notice { padding: 12px 14px; border-radius: 14px; background: #dcfce7; color: #166534; margin-bottom: 16px; }
.error { background: #fee2e2; color: #991b1b; }
.toggle { display:flex; align-items:center; gap:10px; }
@media (max-width: 760px) { .layout { grid-template-columns: 1fr; } .sidebar { position: static; } }

.muted-small { color: var(--muted); font-size: 13px; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; word-break: break-all; }
.compact-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; }
.public-body { background: linear-gradient(135deg, #ecfdf5 0%, #eef6ff 48%, #ffffff 100%); }
.public-nav { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:18px 7vw; background:rgba(255,255,255,.78); backdrop-filter: blur(14px); position:sticky; top:0; z-index:10; border-bottom:1px solid rgba(229,231,235,.7); }
.public-nav nav { display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.button.small { padding: 9px 12px; border-radius: 12px; font-size: 14px; }
.hero { display:grid; grid-template-columns:minmax(0,1.2fr) minmax(260px,.8fr); gap:34px; align-items:center; padding:70px 7vw 42px; }
.eyebrow { color:var(--primary); font-weight:800; letter-spacing:.08em; text-transform:uppercase; font-size:13px; }
.hero h1 { font-size:clamp(34px, 5vw, 64px); line-height:1.02; margin:8px 0 16px; color:#08111f; }
.lead { color:#374151; font-size:18px; line-height:1.7; max-width:720px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:24px; }
.phone-card { background:#111827; border-radius:36px; padding:24px; min-height:430px; box-shadow:0 32px 70px rgba(17,24,39,.24); display:flex; flex-direction:column; gap:18px; justify-content:center; }
.phone-top { width:92px; height:7px; border-radius:20px; background:#374151; margin:0 auto 36px; }
.bubble { max-width:80%; padding:14px 16px; border-radius:18px; line-height:1.45; }
.bubble.left { background:#f3f4f6; color:#111827; align-self:flex-start; }
.bubble.right { background:var(--primary); color:#fff; align-self:flex-end; }
.section { padding:30px 7vw; }
.wide-card { max-width:980px; margin:0 auto 30px; }
.content-page { max-width:860px; margin:30px auto; line-height:1.75; }
.content-page h1 { margin-top:0; }
.public-footer { display:flex; justify-content:center; gap:18px; flex-wrap:wrap; padding:34px 7vw; color:var(--muted); }
@media (max-width: 860px) { .hero { grid-template-columns:1fr; padding-top:42px; } .public-nav { align-items:flex-start; flex-direction:column; } .compact-form { grid-template-columns:1fr; } }
