/* ============================================
   Autovermittler24.at — Dark Theme Styles
   ============================================ */

:root {
  --bg:         #000000;
  --bg-1:       #0a0a0a;
  --bg-2:       #111111;
  --bg-3:       #1a1a1a;
  --border:     #222222;
  --border-lt:  #2e2e2e;
  --text:       #f0f0f0;
  --text-2:     #999999;
  --text-3:     #555555;
  --white:      #ffffff;
  --accent:     #ffffff;
  --accent-dim: rgba(255,255,255,0.06);
  --success:    #22c55e;
  --error:      #ef4444;
  --warning:    #f59e0b;
  --radius:     8px;
  --shadow:     0 1px 3px rgba(0,0,0,0.8);
}

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

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ── HEADER ── */
.header {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: color 0.2s;
}
.logo:hover { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius);
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--bg-3);
}
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.4rem;
  border-radius: var(--radius);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-1);
  border-top: 2px solid var(--border);
  padding: 0.75rem 1.5rem 1rem;
  gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  color: var(--text-2);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover {
  color: var(--text);
  background: var(--bg-3);
}
.mobile-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ── HERO ── */
.hero {
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='400' viewBox='0 0 900 400'%3E%3Crect fill='%23111' width='900' height='400'/%3E%3Cg opacity='.18'%3E%3Cellipse cx='200' cy='280' rx='160' ry='55' fill='%23444'/%3E%3Crect x='80' y='210' width='240' height='70' rx='20' fill='%23555'/%3E%3Crect x='110' y='175' width='160' height='50' rx='14' fill='%23444'/%3E%3Ccircle cx='130' cy='285' r='32' fill='%23333' stroke='%23555' stroke-width='6'/%3E%3Ccircle cx='130' cy='285' r='14' fill='%23555'/%3E%3Ccircle cx='280' cy='285' r='32' fill='%23333' stroke='%23555' stroke-width='6'/%3E%3Ccircle cx='280' cy='285' r='14' fill='%23555'/%3E%3Cellipse cx='680' cy='280' rx='160' ry='55' fill='%23444'/%3E%3Crect x='560' y='210' width='240' height='70' rx='20' fill='%23555'/%3E%3Crect x='590' y='175' width='160' height='50' rx='14' fill='%23444'/%3E%3Ccircle cx='610' cy='285' r='32' fill='%23333' stroke='%23555' stroke-width='6'/%3E%3Ccircle cx='610' cy='285' r='14' fill='%23555'/%3E%3Ccircle cx='760' cy='285' r='32' fill='%23333' stroke='%23555' stroke-width='6'/%3E%3Ccircle cx='760' cy='285' r='14' fill='%23555'/%3E%3C/g%3E%3C/svg%3E")
    center/cover no-repeat;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.hero-content { max-width: 680px; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(240,240,240,0.75);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FEATURES ── */
.features {
  background: var(--bg-1);
  padding: 4rem 1.5rem;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}
.feature-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  border-color: #333;
  transform: translateY(-2px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.feature-card p {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.footer-section p {
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.footer-section h3 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-section a:hover { color: var(--white); }

.social-links {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.social-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-icon:hover {
  background: var(--white);
  color: #000;
  border-color: var(--white);
}
.social-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-3);
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--text-2); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  background: var(--white);
  color: #000;
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #e5e5e5; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); }

.btn-success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  background: var(--success);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-success:hover { background: #16a34a; transform: translateY(-1px); }
.btn-success:disabled { background: #166534; color: #4ade80; cursor: not-allowed; transform: none; }

/* ── MAIN LAYOUT ── */
main { min-height: calc(100vh - 64px - 300px); }

.page-header {
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.page-header p {
  color: var(--text-2);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1.5rem;
}

/* ── CARD ── */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

/* ── INFO BOX ── */
.info-box {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.65;
}
.info-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.info-box a { color: var(--white); }

/* ── FORMS ── */
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ccc;
  margin-bottom: 0.45rem;
}
.form-group label .required { color: var(--error); margin-left: 2px; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="password"],
select,
textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.65rem 0.9rem;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder,
textarea::placeholder { color: var(--text-3); }

input:focus,
select:focus,
textarea:focus {
  border-color: var(--white);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.08);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px var(--bg-3) inset !important;
  -webkit-text-fill-color: var(--text) !important;
  caret-color: var(--text);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
select option { background: var(--bg-3); color: var(--text); }

textarea { resize: vertical; min-height: 120px; }

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  cursor: pointer;
  accent-color: var(--white);
  margin-top: 2px;
}
.checkbox-group label {
  font-size: 0.88rem;
  color: var(--text-2);
  margin: 0;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-group a { color: var(--white); }

/* ── FORM ROW ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── FILE UPLOAD ── */
.file-upload {
  border: 2px dashed var(--border-lt);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
}
.file-upload:hover {
  border-color: var(--white);
  background: var(--bg-1);
}
.file-upload p {
  color: var(--text-2);
  font-size: 0.88rem;
  margin-top: 0.4rem;
}
.file-upload input[type="file"] { display: none; }

.upload-preview {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.upload-preview img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--border-lt);
}

/* ── FILTERS ── */
.filters {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.filters h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  color: var(--text);
  padding: 1rem 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.6);
}
.cookie-text {
  color: #aaa;
  font-size: 0.88rem;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}
.cookie-text strong { color: var(--white); }
.cookie-text a { color: #ccc; text-decoration: underline; }
.cookie-buttons {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-btn-accept {
  padding: 0.5rem 1.2rem;
  background: var(--white);
  color: #000;
  border: none;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-btn-accept:hover { background: #e5e5e5; }
.cookie-btn-decline {
  padding: 0.5rem 1.2rem;
  background: transparent;
  color: #888;
  border: 1px solid #333;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-btn-decline:hover { color: var(--text-2); }

/* ── LEGAL PAGES ── */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}
.legal-page .card { padding: 2.5rem; }
.legal-page h2 {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 700;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--border);
  margin-top: 2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.legal-page h2:first-child { margin-top: 0; }
.legal-page h3 {
  color: #ccc;
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.legal-page p {
  color: #aaa;
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.legal-page a { color: var(--white); }
.legal-page ul {
  color: #aaa;
  font-size: 0.93rem;
  line-height: 1.75;
  padding-left: 1.4rem;
  margin-bottom: 0.75rem;
}

/* ── KONTAKT PAGE ── */
.kontakt-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: start;
}

.kontakt-info-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.kontakt-info-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.kontakt-info-card .subtitle {
  color: var(--text-2);
  font-size: 0.88rem;
  margin-bottom: 1.75rem;
}

.kontakt-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--bg-3);
}
.kontakt-item:last-of-type { border-bottom: none; }

.kontakt-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--accent-dim);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.kontakt-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kontakt-item h3 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #888;
  margin-bottom: 0.2rem;
}
.kontakt-item p,
.kontakt-item a {
  color: var(--text);
  font-size: 0.93rem;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.kontakt-item a:hover { color: var(--white); text-decoration: underline; }

.form-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}

/* FAQ */
.faq-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}
.faq-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-3); }

.faq-arrow {
  color: #666;
  font-size: 0.8rem;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; }
.faq-answer a { color: var(--white); }

/* ── STATUS PAGE ── */
.status-layout {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.status-search-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}
.status-search-card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.status-wartend {
  background: rgba(245,158,11,0.1);
  border: 2px solid var(--warning);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  margin-bottom: 1rem;
}
.status-freigegeben {
  background: rgba(34,197,94,0.1);
  border: 2px solid var(--success);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  margin-bottom: 1rem;
}
.status-abgelehnt {
  background: rgba(239,68,68,0.1);
  border: 2px solid var(--error);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  margin-bottom: 1rem;
}
.status-verkauft {
  background: rgba(124,58,237,0.1);
  border: 2px solid #7c3aed;
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  margin-bottom: 1rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.status-wartend .status-badge { background: rgba(245,158,11,0.2); color: var(--warning); }
.status-freigegeben .status-badge { background: rgba(34,197,94,0.2); color: var(--success); }
.status-abgelehnt .status-badge { background: rgba(239,68,68,0.2); color: var(--error); }
.status-verkauft .status-badge { background: rgba(124,58,237,0.2); color: #a78bfa; }

.inserat-details {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1rem;
}
.inserat-details h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-2);
  margin-bottom: 0.75rem;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.detail-row:last-child { border-bottom: none; }
.detail-row span:first-child { color: var(--text-2); }
.detail-row span:last-child { color: var(--text); font-weight: 500; }

.progress-steps {
  display: flex;
  gap: 0.4rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.progress-step {
  flex: 1;
  min-width: 100px;
  background: var(--bg-3);
  color: var(--text-3);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}
.progress-step.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-weight: 600;
}
.progress-step.done {
  background: rgba(34,197,94,0.12);
  color: var(--success);
}

.error-msg {
  background: rgba(239,68,68,0.1);
  color: #fca5a5;
  border-left: 4px solid var(--error);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: none;
}

.ablehnungs-box {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1rem;
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.65;
}
.ablehnungs-box strong { color: var(--text); }

.status-cta {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.status-cta p {
  color: var(--text-2);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

/* ── UPLOAD STATUS ── */
.upload-status {
  background: rgba(255,255,255,0.04);
  border: 1px solid #333;
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}
.upload-status.success {
  background: rgba(34,197,94,0.1);
  border: 2px solid var(--success);
  color: #86efac;
}
.upload-status.error {
  background: rgba(239,68,68,0.1);
  border: 2px solid var(--error);
  color: #fca5a5;
}

/* ── KUNDE PAGE ── */
.kunde-layout {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}
.form-section {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}
.form-section .section-title { margin-top: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-layout { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .hero { min-height: 360px; padding: 3rem 1rem; }
  .hero h1 { font-size: 1.9rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .progress-steps { flex-direction: column; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 1rem; }
  .page-header { padding: 1.75rem 1rem; }
  .legal-page .card { padding: 1.5rem; }
  .kontakt-info-card, .form-card, .form-section, .status-search-card { padding: 1.25rem; }
}
