/* Logistikberater.at Design – Shiparu Unterseite */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #f15a24;
  --primary-dark: #d84e1f;
  --text: #1a1a1a;
  --text-light: #555;
  --bg: #fff;
  --bg-light: #f8f9fa;
  --border: #e5e7eb;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --ok: #15803d;
  --err: #b91c1c;
}
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.logo img { height: 48px; width: auto; border-radius: 6px; }
.brand { display: flex; flex-direction: column; font-weight: 600; line-height: 1.2; }
.brand .brand-name { font-size: 15px; }
.brand .brand-domain { font-size: 12px; font-weight: 400; color: var(--text-light); }
.badge-shiparu {
  background: rgba(241,90,36,0.12);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
nav.top-links { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
nav.top-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
}
nav.top-links a:hover { color: var(--primary); }
.hero {
  padding: 48px 20px 40px;
  text-align: center;
  background: linear-gradient(180deg, rgba(241,90,36,0.05) 0%, var(--bg) 100%);
}
.hero h1 {
  font-size: clamp(26px, 5vw, 36px);
  margin-bottom: 16px;
  line-height: 1.25;
}
.hero p { color: var(--text-light); max-width: 640px; margin: 0 auto 24px; }
.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 15px;
}
.btn:hover { background: var(--primary-dark); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
section { padding: 40px 0; }
section h2 { font-size: 22px; margin-bottom: 12px; }
.muted { color: var(--text-light); font-size: 14px; }
.form-group { margin-bottom: 16px; text-align: left; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.form-group input, .form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
}
.alert { padding: 12px 16px; border-radius: 8px; margin: 16px 0; font-size: 14px; }
.alert-ok { background: #dcfce7; color: var(--ok); }
.alert-err { background: #fee2e2; color: var(--err); }
.file-list { list-style: none; margin-top: 16px; }
.file-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
footer {
  background: #1a1a1a;
  color: white;
  padding: 32px 20px;
  margin-top: 40px;
}
footer a { color: white; text-decoration: none; opacity: 0.9; }
footer a:hover { opacity: 1; }
footer small { font-size: 13px; opacity: 0.8; }
@media (max-width: 640px) {
  nav.top-links { display: none; }
}
