:root {
    --bg: #f3efe8;
    --panel: #fffdf9;
    --text: #171717;
    --muted: #5f5b57;
    --line: #e7ddd3;
    --accent: #ff5c1b;
    --accent-dark: #de4e14;
    --shadow: 0 10px 30px rgba(26, 22, 17, .08);
    --radius: 18px;
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; font-family: Inter, Arial, sans-serif; color: var(--text); background: var(--bg); }
a { color: inherit; text-decoration: none; }
.container { width:min(1160px, calc(100% - 32px)); margin:0 auto; }
.topbar { padding:18px 0; background:rgba(255,255,255,.65); border-bottom:1px solid rgba(231,221,211,.75); position:sticky; top:0; backdrop-filter: blur(8px); z-index:10; }
.topbar-inner { display:flex; align-items:center; justify-content:space-between; gap:16px; }
.brand { font-weight:800; font-size:24px; color:var(--accent); }
.nav { display:flex; align-items:center; gap:22px; color:var(--muted); font-size:14px; }
.nav a:hover { color:var(--text); }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:14px 22px; border-radius:14px; border:1px solid transparent; cursor:pointer; font-weight:700; }
.btn-primary { background:var(--accent); color:#fff; box-shadow: var(--shadow); }
.btn-primary:hover { background:var(--accent-dark); }
.btn-secondary { background:#fff; color:var(--text); border-color:var(--line); }
.hero { padding:64px 0 28px; }
.hero-grid { display:grid; grid-template-columns: 1.08fr .92fr; gap:34px; align-items:center; }
.kicker { display:inline-block; background:#fee5db; color:#bb4113; font-size:12px; font-weight:800; padding:8px 10px; border-radius:999px; margin-bottom:18px; }
.hero h1 { margin:0 0 14px; font-size: clamp(42px, 6vw, 74px); line-height:.95; letter-spacing:-.03em; font-family: Georgia, 'Times New Roman', serif; }
.hero p { margin:0 0 22px; font-size:18px; line-height:1.65; color:var(--muted); max-width: 640px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:22px; }
.mini-cards { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:14px; max-width:520px; }
.mini-card, .panel { background:var(--panel); border:1px solid rgba(231,221,211,.85); border-radius:var(--radius); box-shadow:var(--shadow); }
.mini-card { padding:18px; }
.mini-card strong { display:block; margin-bottom:8px; }
.mock-chat { padding:18px; position:relative; }
.mock-title { font-size:13px; font-weight:800; color:#bb4113; margin-bottom:12px; }
.bubble { max-width:90%; padding:12px 14px; border-radius:14px; font-size:14px; line-height:1.45; margin-bottom:10px; }
.bubble-light { background:#fff; border:1px solid var(--line); }
.bubble-dark { background:#171717; color:#fff; margin-left:auto; }
.lead-card { margin-top:18px; padding:14px; border:1px solid var(--line); background:#fff; border-radius:14px; font-size:13px; }
.lead-card table { width:100%; border-collapse:collapse; }
.lead-card td { padding:5px 0; border-bottom:1px solid #f0e8df; }
.lead-card td:last-child { text-align:right; color:#5f5b57; }
.trust { padding:22px 0 6px; }
.trust-row { display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:14px; }
.trust-box { text-align:center; padding:18px 14px; }
.section { padding:58px 0; }
.section h2 { margin:0 0 12px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(34px, 5vw, 54px); line-height:1; letter-spacing:-.03em; text-align:center; }
.section p.section-lead { max-width:760px; text-align:center; margin:0 auto 28px; color:var(--muted); font-size:18px; line-height:1.65; }
.steps { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:18px; }
.step, .feature-card { padding:24px; }
.step .num { width:38px; height:38px; border-radius:999px; background:#171717; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; margin-bottom:16px; }
.step h3, .feature-card h3 { margin:0 0 8px; font-size:20px; }
.step p, .feature-card p { margin:0; color:var(--muted); line-height:1.6; }
.features-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.cta-panel { padding:34px; display:flex; align-items:center; justify-content:space-between; gap:18px; }
.cta-panel h3 { margin:0 0 8px; font-size:30px; font-family: Georgia, 'Times New Roman', serif; }
.footer { padding:28px 0 50px; color:var(--muted); }
.flash { padding:14px 18px; border-radius:14px; margin:20px 0; }
.flash-error { background:#fde8e8; color:#9b1c1c; border:1px solid #f8b4b4; }
.flash-success { background:#e8fff0; color:#046c4e; border:1px solid #84e1bc; }
.form-shell { max-width:560px; margin:42px auto; padding:28px; }
.form-shell h1 { margin:0 0 10px; font-size:42px; font-family: Georgia, 'Times New Roman', serif; }
.form-shell p { color:var(--muted); margin:0 0 18px; }
.form-group { margin-bottom:14px; }
label { display:block; margin-bottom:7px; font-weight:700; }
input, select, textarea { width:100%; padding:14px 15px; border-radius:14px; border:1px solid var(--line); background:#fff; font:inherit; }
textarea { min-height:120px; resize:vertical; }
.dashboard-shell { display:grid; grid-template-columns:260px 1fr; min-height:100vh; }
.sidebar { background:#161616; color:#f5f5f5; padding:24px 18px; }
.sidebar .brand { color:#fff; }
.sidebar a { display:block; padding:12px 14px; border-radius:12px; color:#d7d7d7; margin-top:6px; }
.sidebar a.active, .sidebar a:hover { background:#242424; color:#fff; }
.main { padding:28px; }
.stats { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; margin-bottom:20px; }
.stat { padding:22px; }
.table-wrap { overflow:auto; }
table.data { width:100%; border-collapse:collapse; background:#fff; }
table.data th, table.data td { text-align:left; padding:14px; border-bottom:1px solid #efe5da; }
.badge { display:inline-block; padding:7px 10px; border-radius:999px; background:#fee5db; color:#bb4113; font-size:12px; font-weight:700; }
.code-box { background:#111; color:#f5f5f5; border-radius:16px; padding:18px; overflow:auto; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size:14px; }
@media (max-width: 980px) {
  .hero-grid, .steps, .features-grid, .trust-row, .stats, .dashboard-shell { grid-template-columns:1fr; }
  .dashboard-shell { display:block; }
  .sidebar { position:static; }
  .cta-panel { display:block; }
}
