/* HANDWERK CONNECT — Dark Theme + Orange Accent (#F59E0B) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --accent: #F59E0B;
  --accent-hover: #D97706;
  --accent-light: rgba(245,158,11,0.15);
  --accent-glow: rgba(245,158,11,0.25);

  --bg: #0B0D11;
  --bg-alt: #0F1117;
  --surface: #161820;
  --surface-2: #1C1F2A;
  --surface-3: #242736;
  --border: #2A2D3A;
  --border-light: #363A4A;

  --text: #E8EAED;
  --text-sec: #9CA3B0;
  --text-muted: #5F6680;
  --text-inv: #0B0D11;

  --green: #22C55E;
  --green-light: rgba(34,197,94,0.12);
  --red: #EF4444;
  --red-light: rgba(239,68,68,0.12);
  --blue: #3B82F6;
  --blue-light: rgba(59,130,246,0.12);
  --orange: #F97316;
  --orange-light: rgba(249,115,22,0.12);
  --yellow: #F59E0B;
  --yellow-light: rgba(245,158,11,0.12);

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --radius-full: 9999px;

  --shadow: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.5);

  --sidebar-w: 240px;
  --header-h: 52px;
  --transition: 200ms ease;
}

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font); font-size: 14px; color: var(--text); background: var(--bg); line-height: 1.5; height: 100dvh; overflow: hidden; }
#app { height: 100dvh; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }
input, select, textarea { font: inherit; color: var(--text); }

/* ── Buttons ─────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 8px 16px; font-size: 13px; font-weight: 600; border-radius: var(--radius-md); transition: all var(--transition); white-space: nowrap; border: none; }
.btn-accent { background: var(--accent); color: var(--text-inv); }
.btn-accent:hover { background: var(--accent-hover); }
.btn-ghost { background: transparent; color: var(--text-sec); }
.btn-ghost:hover { background: var(--surface-2); color: var(--text); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-light); }
.btn-outline:hover { background: var(--surface); border-color: var(--accent); color: var(--accent); }
.btn-full { width: 100%; }
.btn-lg { padding: 12px 28px; font-size: 15px; border-radius: var(--radius-lg); }
.btn-sm { padding: 4px 10px; font-size: 12px; }
.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover { background: #DC2626; }

/* ── Form ────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.form-input { width: 100%; padding: 8px 12px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); font-size: 13px; color: var(--text); outline: none; transition: border-color var(--transition); }
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { resize: vertical; min-height: 60px; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235F6680' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; padding-right: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── Landing ─────────────────────────────────────── */
.landing-page { min-height: 100dvh; background: var(--bg); display: flex; flex-direction: column; overflow-y: auto; }
.landing-header { padding: 16px 0; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: rgba(11,13,17,0.95); backdrop-filter: blur(10px); z-index: 10; }
.landing-header-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.landing-logo { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.landing-logo b { color: var(--accent); }
.landing-logo-icon { width: 36px; height: 36px; background: var(--accent); color: var(--text-inv); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; }
.landing-nav a { font-size: 14px; font-weight: 600; color: var(--accent); }
.landing-hero { flex: 1; display: flex; align-items: center; justify-content: center; padding: 80px 24px; text-align: center; }
.landing-hero-inner { max-width: 700px; }
.landing-hero h1 { font-size: 3rem; font-weight: 800; line-height: 1.1; color: var(--text); margin-bottom: 20px; letter-spacing: -0.02em; }
.landing-hero .accent { color: var(--accent); }
.landing-hero-sub { font-size: 1.1rem; color: var(--text-sec); max-width: 500px; margin: 0 auto 32px; }
.landing-cta { display: flex; gap: 12px; justify-content: center; }
.landing-features { padding: 60px 24px 80px; background: var(--bg-alt); }
.landing-features-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px; text-align: center; }
.feature-icon { font-size: 2rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-sec); line-height: 1.5; }
.landing-footer { padding: 24px; border-top: 1px solid var(--border); background: var(--bg); }
.landing-footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.landing-footer-brand { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--text-sec); }
.landing-logo-icon-sm { width: 24px; height: 24px; background: var(--accent); color: var(--text-inv); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 800; }
.landing-footer-links { display: flex; gap: 20px; }
.landing-footer-links a { font-size: 13px; color: var(--text-muted); }
.landing-footer-links a:hover { color: var(--accent); }
.landing-footer-copy { font-size: 12px; color: var(--text-muted); }
.landing-legal { padding: 40px 24px 60px; background: var(--bg); border-top: 1px solid var(--border); }
.landing-legal-inner { max-width: 700px; margin: 0 auto; position: relative; }
.landing-legal-inner h2 { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 20px; }
.landing-legal-inner h3 { font-size: 14px; font-weight: 700; color: var(--text); margin: 16px 0 6px; }
.landing-legal-inner p { font-size: 13px; color: var(--text-sec); line-height: 1.7; margin-bottom: 8px; }
.landing-legal-close { position: absolute; top: 0; right: 0; font-size: 14px; color: var(--text-muted); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 6px 14px; cursor: pointer; }
.landing-legal-close:hover { color: var(--accent); border-color: var(--accent); }

/* ── Login ───────────────────────────────────────── */
.login-screen { display: flex; align-items: center; justify-content: center; height: 100dvh; background: var(--bg); padding: 24px; }
.login-card { width: 100%; max-width: 380px; background: var(--surface); border-radius: var(--radius-xl); padding: 40px 32px; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.login-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; }
.login-logo-icon { width: 40px; height: 40px; background: var(--accent); color: var(--text-inv); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; }
.login-logo-text { font-size: 18px; font-weight: 800; color: var(--text); letter-spacing: -0.01em; }
.login-logo-text span { color: var(--accent); }
.login-subtitle { text-align: center; color: var(--text-sec); font-size: 13px; margin-bottom: 24px; }
.login-form { display: flex; flex-direction: column; gap: 16px; }
.login-error { font-size: 12px; color: var(--red); text-align: center; display: none; }
.login-error.visible { display: block; }
.login-hint { font-size: 12px; color: var(--text-muted); text-align: center; padding: 8px 12px; background: var(--surface-2); border-radius: var(--radius-md); }
.login-hint strong { color: var(--text-sec); }
.login-back { text-align: center; margin-top: 16px; }
.login-back a { font-size: 13px; color: var(--text-muted); }
.login-back a:hover { color: var(--accent); }

/* ── App Layout ──────────────────────────────────── */
.app-layout { display: grid; grid-template-columns: var(--sidebar-w) 1fr; grid-template-rows: var(--header-h) 1fr; height: 100dvh; overflow: hidden; }

/* ── Sidebar ─────────────────────────────────────── */
.sidebar { grid-row: 1 / -1; background: var(--surface); border-right: 1px solid var(--border); display: flex; flex-direction: column; overflow-y: auto; z-index: 30; }
.sidebar-header { display: flex; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.sidebar-logo { display: flex; align-items: center; gap: 8px; }
.sidebar-logo-icon { width: 28px; height: 28px; background: var(--accent); color: var(--text-inv); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; flex-shrink: 0; }
.sidebar-logo-text { font-size: 13px; font-weight: 700; color: var(--text); }
.sidebar-logo-text span { color: var(--accent); }
.sidebar-nav { padding: 8px; flex: 1; }
.nav-section-label { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; padding: 16px 10px 4px; }
.nav-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: var(--radius-md); color: var(--text-sec); font-size: 13px; font-weight: 500; cursor: pointer; transition: all var(--transition); text-decoration: none; margin-bottom: 2px; }
.nav-item:hover { background: var(--surface-2); color: var(--text); text-decoration: none; }
.nav-item.active { background: var(--accent-light); color: var(--accent); }
.nav-item svg { flex-shrink: 0; }
.nav-badge { margin-left: auto; font-size: 10px; font-weight: 700; background: var(--red); color: #fff; padding: 1px 6px; border-radius: var(--radius-full); min-width: 18px; text-align: center; }
.nav-item-subtle { font-size: 12px; color: var(--text-muted); padding: 4px 10px; }
.nav-item-subtle:hover { color: var(--text-sec); }
.sidebar-footer { padding: 8px; border-top: 1px solid var(--border); }
.sidebar-user { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: var(--radius-md); cursor: pointer; transition: background var(--transition); }
.sidebar-user:hover { background: var(--surface-2); }
.user-avatar { width: 32px; height: 32px; border-radius: var(--radius-full); background: var(--accent); color: var(--text-inv); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.user-info { display: flex; flex-direction: column; min-width: 0; }
.user-name { font-size: 12px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-role { font-size: 11px; color: var(--text-muted); }

/* ── Top Header ──────────────────────────────────── */
.top-header { grid-column: 2; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; background: var(--surface); border-bottom: 1px solid var(--border); z-index: 20; }
.header-left { display: flex; align-items: center; gap: 12px; }
.header-title { font-size: 16px; font-weight: 700; color: var(--text); }
.header-right { display: flex; align-items: center; gap: 8px; }
.header-company { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.mobile-menu-btn { display: none; padding: 4px; color: var(--text-sec); }

/* ── Main ────────────────────────────────────────── */
.main-content { grid-column: 2; overflow-y: auto; padding: 24px; background: var(--bg); }
.page-section { display: none; }
.page-section.active { display: block; }
.section-title { font-size: 14px; font-weight: 700; color: var(--text); margin: 20px 0 12px; }

/* ── KPI Cards ───────────────────────────────────── */
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.kpi-card { background: var(--surface); border-radius: var(--radius-lg); padding: 20px; border: 1px solid var(--border); }
.kpi-label { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.kpi-value { font-size: 28px; font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.kpi-value.accent { color: var(--accent); }
.kpi-value.red { color: var(--red); }
.kpi-value.green { color: var(--green); }

/* ── Data Table ──────────────────────────────────── */
.table-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.table-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-select { padding: 6px 32px 6px 10px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); font-size: 12px; color: var(--text); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235F6680' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 8px center; outline: none; cursor: pointer; }
.filter-select:focus { border-color: var(--accent); }
.data-table-wrapper { background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table thead th { padding: 10px 14px; font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; text-align: left; background: var(--surface-2); border-bottom: 1px solid var(--border); white-space: nowrap; }
.data-table tbody tr { border-bottom: 1px solid var(--border); cursor: pointer; transition: background var(--transition); }
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: var(--surface-2); }
.data-table td { padding: 10px 14px; font-size: 13px; color: var(--text-sec); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }
.data-table td:first-child { font-weight: 600; color: var(--text); }

/* ── Badges ──────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px; border-radius: var(--radius-full); font-size: 11px; font-weight: 600; white-space: nowrap; }
.badge-offen { background: var(--blue-light); color: var(--blue); }
.badge-zugewiesen { background: var(--yellow-light); color: var(--yellow); }
.badge-in_bearbeitung { background: var(--orange-light); color: var(--orange); }
.badge-abgeschlossen { background: var(--green-light); color: var(--green); }
.badge-storniert { background: var(--red-light); color: var(--red); }
.badge-dringend { background: var(--red-light); color: var(--red); }
.badge-hoch { background: var(--orange-light); color: var(--orange); }
.badge-normal { background: var(--blue-light); color: var(--blue); }
.badge-niedrig { background: var(--green-light); color: var(--green); }

/* ── Card Grid ───────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; transition: border-color var(--transition); }
.card:hover { border-color: var(--border-light); }
.card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.card-avatar { width: 40px; height: 40px; border-radius: var(--radius-full); background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.card-title { font-size: 14px; font-weight: 600; color: var(--text); }
.card-subtitle { font-size: 12px; color: var(--text-muted); }
.card-body { display: flex; flex-direction: column; gap: 6px; }
.card-field { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-sec); }
.card-field svg { width: 14px; height: 14px; opacity: 0.5; flex-shrink: 0; }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); }
.card-stat { font-size: 12px; color: var(--text-muted); }
.card-stat b { color: var(--text); }

/* ── Auftrag Detail ──────────────────────────────── */
.detail-back { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); cursor: pointer; margin-bottom: 16px; }
.detail-back:hover { color: var(--accent); text-decoration: none; }
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
.detail-main { display: flex; flex-direction: column; gap: 16px; }
.detail-sidebar { display: flex; flex-direction: column; gap: 16px; }
.detail-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.detail-card-title { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
.detail-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }
.detail-row:last-child { border-bottom: none; }
.detail-row-label { font-size: 12px; color: var(--text-muted); }
.detail-row-value { font-size: 13px; color: var(--text); font-weight: 500; }
.detail-desc { font-size: 13px; color: var(--text-sec); line-height: 1.6; }

/* ── Comments ────────────────────────────────────── */
.comment-list { display: flex; flex-direction: column; gap: 12px; }
.comment { background: var(--surface-2); border-radius: var(--radius-md); padding: 12px; }
.comment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.comment-author { font-size: 12px; font-weight: 600; color: var(--text); }
.comment-role { font-size: 10px; color: var(--text-muted); background: var(--surface-3); padding: 1px 6px; border-radius: var(--radius-full); }
.comment-time { font-size: 11px; color: var(--text-muted); }
.comment-text { font-size: 13px; color: var(--text-sec); }
.comment-form { display: flex; gap: 8px; margin-top: 12px; }
.comment-form input { flex: 1; }

/* ── Einstellungen ───────────────────────────────── */
.settings-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 16px; }
.settings-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 16px; }

/* ── Legal Pages ─────────────────────────────────── */
.legal-content { max-width: 700px; }
.legal-content h2 { font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 24px; }
.legal-section { margin-bottom: 24px; }
.legal-section h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.legal-section p { font-size: 13px; color: var(--text-sec); line-height: 1.7; margin-bottom: 8px; }

/* ── Modal ───────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 100; display: flex; align-items: center; justify-content: center; padding: 16px; opacity: 0; visibility: hidden; transition: opacity 200ms, visibility 200ms; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal { background: var(--surface); border-radius: var(--radius-xl); width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); border: 1px solid var(--border); transform: translateY(8px); transition: transform 200ms; }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.modal-title { font-size: 15px; font-weight: 700; color: var(--text); }
.modal-close { font-size: 20px; color: var(--text-muted); padding: 4px; border-radius: var(--radius-sm); }
.modal-close:hover { color: var(--text); background: var(--surface-2); }
.modal-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.modal-footer { display: flex; align-items: center; justify-content: flex-end; gap: 8px; padding: 14px 20px; border-top: 1px solid var(--border); }

/* ── Toast ───────────────────────────────────────── */
.toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 200; display: flex; flex-direction: column; gap: 8px; }
.toast { background: var(--surface-2); color: var(--text); padding: 12px 16px; border-radius: var(--radius-md); font-size: 13px; font-weight: 500; box-shadow: var(--shadow); border: 1px solid var(--border); animation: toast-in 0.3s ease; max-width: 320px; }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.toast.removing { animation: toast-out 0.2s ease forwards; }
@keyframes toast-out { to { opacity: 0; transform: translateY(10px); } }

/* ── Scrollbars ──────────────────────────────────── */
.main-content::-webkit-scrollbar, .sidebar::-webkit-scrollbar { width: 6px; }
.main-content::-webkit-scrollbar-track, .sidebar::-webkit-scrollbar-track { background: transparent; }
.main-content::-webkit-scrollbar-thumb, .sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: var(--radius-full); }

/* ── Sidebar Overlay ─────────────────────────────── */
.sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 25; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .landing-features-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .app-layout { grid-template-columns: 1fr; }
  .sidebar { position: fixed; left: 0; top: 0; bottom: 0; width: var(--sidebar-w); transform: translateX(-100%); transition: transform 300ms ease; z-index: 50; box-shadow: var(--shadow-lg); }
  .sidebar.mobile-open { transform: translateX(0); }
  .sidebar-overlay.visible { display: block; }
  .mobile-menu-btn { display: flex; }
  .top-header, .main-content { grid-column: 1; }
  .main-content { padding: 16px; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .table-toolbar { flex-direction: column; align-items: stretch; }
  .landing-hero h1 { font-size: 2rem; }
  .landing-features-inner { grid-template-columns: 1fr; }
  .landing-cta { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .kpi-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
}
