:root {
  --wt-bg: #f5f7fb;
  --wt-surface: #ffffff;
  --wt-surface-soft: #eef2f8;
  --wt-border: #dbe3ef;
  --wt-text: #111827;
  --wt-muted: #6b7280;
  --wt-primary: #4361ee;
  --wt-primary-hover: #3651d4;
  --wt-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --wt-radius-lg: 20px;
  --wt-radius-md: 14px;
  --wt-radius-sm: 10px;
  --wt-container: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--wt-bg);
  color: var(--wt-text);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------------------------------
   Header / Navigation
--------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--wt-border);
  backdrop-filter: blur(10px);
}

.site-header__inner,
.site-footer__inner {
  max-width: var(--wt-container);
  margin: 0 auto;
  width: 100%;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
}

.site-header__brand a {
  text-decoration: none;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--wt-text);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--wt-text);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--wt-primary);
}

/* ---------------------------------
   Main Layout
--------------------------------- */

.site-main {
  max-width: var(--wt-container);
  margin: 0 auto;
  padding: 32px 28px 64px;
}

section {
  background: var(--wt-surface);
  border: 1px solid var(--wt-border);
  border-radius: var(--wt-radius-lg);
  box-shadow: var(--wt-shadow);
  margin-bottom: 28px;
}

/* ---------------------------------
   Hero
--------------------------------- */

.hero {
  padding: 56px 56px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(67, 97, 238, 0.10), transparent 32%),
    radial-gradient(circle at top right, rgba(67, 97, 238, 0.08), transparent 28%),
    var(--wt-surface);
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.hero p {
  margin: 0 auto 28px;
  max-width: 780px;
  font-size: 21px;
  line-height: 1.45;
  color: var(--wt-muted);
}

/* ---------------------------------
   Buttons
--------------------------------- */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--wt-primary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(67, 97, 238, 0.24);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary:hover {
  background: var(--wt-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(67, 97, 238, 0.28);
}

/* ---------------------------------
   Content Sections
--------------------------------- */

.features,
.steps,
.faq,
.cta-dienstleister,
.cities {
  padding: 30px 30px;
}

.customers {
  padding: 30px 30px;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 24px;
}

.features h2,
.steps h2,
.customers h2,
.faq h2,
.cta-dienstleister h2,
.cities h2 {
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.features-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.step,
.customers-right,
.faq-item {
  background: var(--wt-surface-soft);
  border: 1px solid var(--wt-border);
  border-radius: var(--wt-radius-md);
}

.feature-card {
  padding: 20px 20px;
}

.feature-card h3,
.step h3,
.customers-right h3,
.faq-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.3;
}

.feature-card p,
.step p,
.customers-left p,
.customers-right li,
.faq-item p,
.cta-dienstleister p,
.customers-left li,
.cities-intro,
.cities-note {
  font-size: 16px;
  color: var(--wt-muted);
}

.feature-card p,
.step p,
.faq-item p,
.cta-dienstleister p,
.customers-left p,
.cities-intro,
.cities-note {
  margin: 0;
}

.step {
  padding: 20px 18px;
}

.step span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(67, 97, 238, 0.12);
  color: var(--wt-primary);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}

.customers-left ul,
.customers-right ul {
  margin: 16px 0 22px;
  padding-left: 20px;
}

.customers-left li,
.customers-right li {
  margin-bottom: 8px;
}

.customers-right {
  padding: 22px 22px;
}

.faq-item {
  padding: 20px 20px;
  margin-bottom: 14px;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.cta-dienstleister {
  text-align: center;
}

.cta-dienstleister p {
  max-width: 760px;
  margin: 0 auto 22px;
}

/* ---------------------------------
   Cities
--------------------------------- */

.cities-intro {
  max-width: 900px;
  margin-bottom: 24px;
}

.cities-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 32px;
  align-items: start;
}

.cities-columns ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cities-columns li {
  margin: 0 0 10px;
  padding: 0;
  line-height: 1.35;
}

.cities-columns a {
  text-decoration: none;
  color: var(--wt-text);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.cities-columns a:hover {
  color: var(--wt-primary);
}

.cities-note {
  margin-top: 20px;
  font-size: 15px;
}

/* ---------------------------------
   Footer
--------------------------------- */

.site-footer {
  padding: 24px 20px 30px;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer__brand {
  font-size: 14px;
  color: var(--wt-muted);
}

.site-footer__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__nav a {
  text-decoration: none;
  font-size: 14px;
  color: var(--wt-muted);
}

.site-footer__nav a:hover {
  color: var(--wt-primary);
}

/* ---------------------------------
   Placeholder Pages
--------------------------------- */

.page-placeholder,
.page-container,
.dashboard-page,
.staff-page,
.security-page {
  padding: 42px 34px;
  min-height: 280px;
}

.page-placeholder h1,
.page-container h1,
.dashboard-page h1,
.staff-page h1,
.security-page h1 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.page-placeholder p,
.page-container p,
.dashboard-page p,
.staff-page p,
.security-page p {
  margin: 0;
  max-width: 760px;
  font-size: 17px;
  color: var(--wt-muted);
}

.page-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(67, 97, 238, 0.10);
  color: var(--wt-primary);
  font-size: 13px;
  font-weight: 700;
}

.page-header,
.dashboard-header,
.staff-header,
.security-header {
  margin-bottom: 16px;
}

.page-content,
.dashboard-content,
.staff-content,
.security-content {
  padding-top: 4px;
}

/* ---------------------------------
   Responsive
--------------------------------- */

@media (max-width: 1100px) {
  .hero {
    padding: 44px 34px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 19px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .customers {
    grid-template-columns: 1fr;
  }

  .cities-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px;
  }

  .site-header__brand a {
    font-size: 24px;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 12px 16px;
  }

  .site-nav a {
    font-size: 14px;
  }

  .site-main {
    padding: 20px 14px 48px;
  }

  .hero,
  .features,
  .steps,
  .customers,
  .faq,
  .cta-dienstleister,
  .cities {
    padding: 22px 16px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 17px;
  }

  .features h2,
  .steps h2,
  .customers h2,
  .faq h2,
  .cta-dienstleister h2,
  .cities h2 {
    font-size: 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .cities-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cities-columns li {
    margin-bottom: 10px;
  }

  .page-placeholder,
  .page-container,
  .dashboard-page,
  .staff-page,
  .security-page {
    padding: 24px 18px;
    min-height: 220px;
  }

  .page-placeholder h1,
  .page-container h1,
  .dashboard-page h1,
  .staff-page h1,
  .security-page h1 {
    font-size: 28px;
  }

  .page-placeholder p,
  .page-container p,
  .dashboard-page p,
  .staff-page p,
  .security-page p {
    font-size: 16px;
  }

  .btn-primary {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
  }
}

.city-hero {
  padding: 44px 40px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(67, 97, 238, 0.10), transparent 32%),
    radial-gradient(circle at top right, rgba(67, 97, 238, 0.08), transparent 28%),
    var(--wt-surface);
}

.city-hero h1 {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.city-hero__text {
  max-width: 820px;
  margin: 0 auto 24px;
  font-size: 19px;
  color: var(--wt-muted);
}

.city-section {
  padding: 30px 30px;
}

.city-section h2 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.city-section p {
  margin: 0 0 14px;
  font-size: 16px;
  color: var(--wt-muted);
}

.city-section p:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .city-hero {
    padding: 28px 18px;
  }

  .city-hero h1 {
    font-size: 30px;
  }

  .city-hero__text {
    font-size: 17px;
  }

  .city-section {
    padding: 22px 16px;
  }

  .city-section h2 {
    font-size: 24px;
  }

  .city-section p {
    font-size: 16px;
  }
}

.city-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--wt-muted);
}

.city-breadcrumb a {
  text-decoration: none;
  color: var(--wt-muted);
  transition: color 0.2s ease;
}

.city-breadcrumb a:hover {
  color: var(--wt-primary);
}

.feature-card a {
  color: var(--wt-primary);
  text-decoration: none;
  font-weight: 600;
}

.feature-card a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .city-breadcrumb {
    justify-content: flex-start;
    font-size: 12px;
    margin-bottom: 12px;
  }
}

/* ---------------------------------
   Staff Layout
--------------------------------- */

.dashboard-shell {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.dashboard-sidebar {
  background: var(--wt-surface);
  border: 1px solid var(--wt-border);
  border-radius: var(--wt-radius-lg);
  box-shadow: var(--wt-shadow);
  padding: 24px 20px;
  position: sticky;
  top: 110px;
}

.dashboard-brand {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--wt-border);
}

.dashboard-logo {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--wt-text);
  margin-bottom: 14px;
}

.dashboard-user {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--wt-text);
  margin-bottom: 4px;
}

.dashboard-role {
  font-size: 14px;
  color: var(--wt-muted);
}

.dashboard-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard-nav-group-title {
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wt-muted);
}

.dashboard-link {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--wt-text);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dashboard-link:hover {
  background: rgba(67, 97, 238, 0.08);
  color: var(--wt-primary);
  transform: translateX(2px);
}

.dashboard-sidebar-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--wt-border);
}

.dashboard-logout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #f1c9cf;
  border-radius: 14px;
  background: #fff5f5;
  color: #dc2626;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.dashboard-logout-btn:hover {
  background: #feecec;
}

.dashboard-main {
  min-width: 0;
}

.dashboard-card {
  background: var(--wt-surface);
  border: 1px solid var(--wt-border);
  border-radius: var(--wt-radius-lg);
  box-shadow: var(--wt-shadow);
  padding: 36px 38px;
  min-height: 560px;
}

.dashboard-card .staff-header {
  margin-bottom: 16px;
}

.dashboard-card .staff-header h1 {
  margin: 0;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.dashboard-card .staff-content p {
  margin: 0;
  max-width: 760px;
  font-size: 17px;
  color: var(--wt-muted);
}

@media (max-width: 1100px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: static;
  }

  .dashboard-card {
    min-height: 380px;
  }
}

@media (max-width: 760px) {
  .dashboard-sidebar {
    padding: 20px 16px;
  }

  .dashboard-logo {
    font-size: 22px;
  }

  .dashboard-user {
    font-size: 15px;
  }

  .dashboard-link {
    min-height: 46px;
    font-size: 15px;
    padding: 0 14px;
  }

  .dashboard-card {
    padding: 24px 18px;
    min-height: 240px;
  }

  .dashboard-card .staff-header h1 {
    font-size: 28px;
  }

  .dashboard-card .staff-content p {
    font-size: 16px;
  }

  .dashboard-logout-btn {
    width: 100%;
    min-height: 46px;
    font-size: 15px;
  }
}

/* ---------------------------------
   Order Form
--------------------------------- */

.site-main .order-hero,
.site-main .order-progress,
.site-main .order-group,
.site-main .order-sidebar-card {
  margin-bottom: 28px;
}

.site-main .order-sidebar-card {
  margin-bottom: 0;
}