@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/plus-jakarta-src/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}
:root {
    --ink: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --bg: #fff8f3;
    --soft: #fff7ed;
    --card: #ffffff;
    --orange: #ff6a00;
    --orange-d: #e55f00;
    --navy: #0b1220;
    --kpi-blue: #3b82f6;
    --kpi-emerald: #10b981;
    --kpi-amber: #f59e0b;
    --kpi-violet: #8b5cf6;
    --kpi-rose: #f43f5e;
    --kpi-cyan: #06b6d4;
    --shadow: 0 10px 30px rgba(15, 23, 42, .06);
    --radius: 16px;
    --radius-sm: 12px;
    --font: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
    --display: Outfit, 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}
h1, h2, .display { font-family: var(--display); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 2.4rem)); margin-inline: auto; }
.site-nav {
    position: sticky; top: 0; z-index: 80;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.nav-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo img { height: 34px; width: auto; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { font-size: .9rem; font-weight: 600; color: var(--muted); }
.nav-links a:hover, .nav-links a.on { color: var(--orange); }
.nav-cta { display: flex; gap: .55rem; align-items: center; }
.nav-toggle {
    display: none; width: 42px; height: 42px; border-radius: 12px;
    border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer;
}
.site-drawer {
    display: none; position: fixed; inset: 0; z-index: 90;
    background: rgba(11, 18, 32, .45);
}
.site-drawer.open { display: block; }
.site-drawer-panel {
    position: absolute; top: 0; right: 0; width: min(320px, 90vw); height: 100%;
    background: #fff; padding: 1.2rem; display: flex; flex-direction: column; gap: .4rem;
    box-shadow: var(--shadow);
}
.site-drawer-panel a { padding: .75rem .8rem; border-radius: 12px; font-weight: 700; color: var(--ink); }
.site-drawer-panel a.on, .site-drawer-panel a:hover { background: var(--soft); color: var(--orange); }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: .62rem 1.2rem; border-radius: var(--radius-sm); font-weight: 700; font-size: .875rem;
    border: 0; cursor: pointer; transition: .18s ease-out; font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) {
    .btn:hover { transform: none; }
    * { transition: none !important; }
}
.btn-p { background: var(--orange); color: #fff; }
.btn-p:hover { background: var(--orange-d); box-shadow: 0 8px 20px rgba(255, 106, 0, .28); }
.btn-g { background: #fff7ed; color: var(--orange); }
.btn-g:hover { background: #ffedd5; }
.btn-outline { background: transparent; color: var(--ink); border: 0; font-weight: 700; padding-left: 0; }
.btn-outline:hover { color: var(--orange); box-shadow: none; }
.btn-lg { padding: .9rem 1.55rem; font-size: 1rem; }
.btn-white { background: #fff; color: var(--orange); }
.hero {
    position: relative; overflow: hidden;
    padding: 4.2rem 0 3.4rem;
    background: #fff;
}
.hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(900px 420px at 12% -10%, #ffe4cc 0%, transparent 70%);
}
.hero-grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.4rem; align-items: center;
}
.hero-copy { max-width: 560px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: #fff; color: var(--orange); padding: .38rem .9rem; border-radius: 999px;
    font-size: .78rem; font-weight: 800; margin-bottom: 1.15rem; border: 1px solid #fed7aa;
}
.hero h1 {
    font-size: clamp(2.35rem, 5vw, 3.55rem); font-weight: 800; line-height: 1.08;
    letter-spacing: -.045em; margin-bottom: 1rem; color: var(--ink);
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-lead { font-size: 1.05rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.6rem; max-width: 460px; }
.hero-btns { display: flex; gap: .7rem; flex-wrap: wrap; align-items: center; }
.hero-mock {
    position: relative; height: 420px;
}
.mock-card {
    position: absolute; background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow); padding: 1rem 1.1rem;
}
.mock-main {
    width: 86%; right: 0; top: 18px;
    transform: rotate(4deg);
    padding: 1.15rem 1.2rem 1.25rem;
}
.mock-float {
    width: 210px; left: 0; bottom: 28px; transform: rotate(-6deg); z-index: 2;
}
.mock-bar {
    width: 180px; right: 8%; top: -6px; transform: rotate(8deg); z-index: 3;
    display: flex; align-items: center; gap: .65rem;
}
.mock-kpis { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .55rem; margin: .85rem 0 1rem; }
.mock-kpi { background: #f8fafc; border-radius: 12px; padding: .65rem .55rem; }
.mock-kpi b { display: block; font-size: .95rem; font-variant-numeric: tabular-nums; }
.mock-kpi span { font-size: .68rem; color: var(--muted); font-weight: 700; }
.mock-row { display: flex; justify-content: space-between; gap: .5rem; font-size: .78rem; padding: .45rem 0; border-top: 1px solid #f1f5f9; }
.mock-chip { display: inline-flex; padding: .12rem .45rem; border-radius: 999px; font-size: .65rem; font-weight: 800; }
.chip-ok { background: #d1fae5; color: #047857; }
.chip-wait { background: #fef3c7; color: #b45309; }
.chip-info { background: #dbeafe; color: #1d4ed8; }
.progress { height: 8px; background: #f1f5f9; border-radius: 999px; overflow: hidden; }
.progress > i { display: block; height: 100%; width: 72%; background: var(--kpi-emerald); border-radius: 999px; }
.trust {
    padding: 1.4rem 0 1.1rem; border-bottom: 1px solid var(--line); background: #fff;
}
.trust-row {
    display: flex; flex-wrap: wrap; gap: .7rem 1.6rem; align-items: center; justify-content: center;
}
.trust-item {
    font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    color: #94a3b8;
}
.section { padding: 4.2rem 0; }
.section-label { font-size: .75rem; font-weight: 800; color: var(--orange); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .55rem; }
.section h2, .section-title {
    font-size: clamp(1.65rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: .55rem;
}
.section-desc { color: var(--muted); max-width: 540px; line-height: 1.7; }
.bento {
    display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: auto auto; gap: 1rem; margin-top: 1.8rem;
}
.bento-wide { grid-column: 1; grid-row: 1 / span 2; padding: 1.7rem; min-height: 280px; }
.bento .card { border-top: 0; }
.tint-blue { background: #eff6ff; }
.tint-emerald { background: #ecfdf5; }
.tint-violet { background: #f5f3ff; }
.icon-tile {
    width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
    font-size: 1.2rem; margin-bottom: 1rem;
}
.tile-blue { background: rgba(59, 130, 246, .12); color: #2563eb; }
.tile-emerald { background: rgba(16, 185, 129, .12); color: #059669; }
.tile-violet { background: rgba(139, 92, 246, .12); color: #7c3aed; }
.tile-amber { background: rgba(245, 158, 11, .14); color: #d97706; }
.grid { display: grid; gap: 1.1rem; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem 1.3rem;
    box-shadow: var(--shadow);
    transition: .18s ease-out;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(15, 23, 42, .08); }
.card h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: .9rem; }
.price { color: var(--orange); font-weight: 800; margin-top: .7rem; font-variant-numeric: tabular-nums; }
.page { padding: 2.4rem 0 3.4rem; }
.page-head { margin-bottom: 1.5rem; }
.page-head h1 { margin: 0 0 .45rem; font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -.03em; }
.muted { color: var(--muted); line-height: 1.7; }
label { display: block; font-size: .82rem; font-weight: 700; margin: .85rem 0 .35rem; }
input, textarea, select {
    width: 100%; padding: .75rem .9rem; border-radius: var(--radius-sm);
    border: 1.5px solid var(--line); background: #fff; font: inherit;
}
input:focus, textarea:focus, select:focus {
    outline: 0; border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, .12);
}
textarea { min-height: 120px; resize: vertical; }
.flash { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; padding: .8rem 1rem; border-radius: 12px; margin-bottom: 1rem; }
.err { color: #dc2626; font-size: .85rem; margin-top: .35rem; }
.cta {
    background: var(--orange); color: #fff; text-align: center; padding: 4rem 1.4rem;
    border-radius: 0;
}
.cta h2 { font-size: 2rem; font-weight: 800; margin-bottom: .55rem; }
.cta p { opacity: .92; margin-bottom: 1.4rem; }
.site-footer {
    background: var(--navy); color: #94a3b8; padding: 2.6rem 0 1.6rem; font-size: .84rem;
}
.footer-grid {
    display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 1.5rem; margin-bottom: 1.8rem;
}
.site-footer h4 { color: #fff; font-size: .82rem; margin-bottom: .7rem; }
.site-footer a { display: block; padding: .2rem 0; }
.site-footer a:hover { color: #fdba74; }
.footer-copy { border-top: 1px solid #1e293b; padding-top: 1rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.auth-shell { min-height: 100vh; display: flex; background: var(--bg); }
.left-panel {
    width: 460px; flex-shrink: 0; padding: 3rem;
    background: #fff;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden; border-right: 1px solid var(--line);
}
.left-panel::before {
    content: ''; position: absolute; top: -80px; right: -80px; width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(255, 106, 0, .16) 0%, transparent 70%); border-radius: 50%;
}
.right-panel { flex: 1; display: grid; place-items: center; padding: 2rem; background: #fff; }
.auth-box { width: min(400px, 100%); }
.auth-box h1 { font-size: 1.55rem; font-weight: 800; margin: 0 0 .35rem; }
.demo-acc {
    width: 100%; text-align: left; border: 1.5px dashed #fed7aa; background: #fff7ed;
    color: #9a3412; border-radius: 12px; padding: .75rem .9rem; cursor: pointer;
    font: inherit; margin: 0 0 1.15rem;
}
.demo-acc b { display: block; font-size: .8rem; font-weight: 800; color: #c2410c; }
.demo-acc span { display: block; font-size: .75rem; margin-top: .15rem; }
.demo-acc:hover { background: #ffedd5; border-color: var(--orange); }
.tel-box {
    display: flex; align-items: stretch; overflow: hidden;
    border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff;
}
.tel-zero {
    display: grid; place-items: center; min-width: 2.5rem;
    font-weight: 800; color: #0f172a; background: #f8fafc;
    border-right: 1px solid var(--line); user-select: none;
}
.tel-box .tel-rest { border: 0 !important; box-shadow: none !important; border-radius: 0 !important; }
.tel-box:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 106, 0, .12); }
.login-alt {
    display: flex; align-items: center; gap: .5rem;
    margin-top: .9rem; font-size: .82rem; font-weight: 650; color: var(--muted);
}
.login-alt input { width: auto; margin: 0; }
.story-card .stars { color: #f59e0b; letter-spacing: .08em; margin-bottom: .45rem; font-size: .85rem; }
.empty-card { text-align: center; padding: 2rem 1.2rem; color: var(--muted); }
@media (max-width: 980px) {
    .hero-grid, .bento, .cards-3, .footer-grid { grid-template-columns: 1fr; }
    .bento-wide { grid-row: auto; }
    .hero-mock { height: 340px; margin-top: .5rem; }
    .mock-main { width: 92%; }
}
@media (max-width: 860px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: grid; place-items: center; }
    .left-panel { display: none; }
    .auth-shell { display: grid; place-items: center; }
}
