/* ALGO Logistik – Premium Theme 2026 */

:root {
  --color-surface: #ffffff;
  --color-surface-elevated: #fafafa;
  --color-surface-dark: #1a1a1a;
  --color-accent-soft: rgba(255, 74, 20, 0.12);
  --color-accent-glow: rgba(255, 74, 20, 0.35);
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --header-compact: 64px;
}

body {
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

body.is-loaded .page-transition {
  opacity: 1;
  transform: none;
}

.page-transition {
  opacity: 1;
  transform: none;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 10001;
  background: linear-gradient(90deg, var(--color-accent), #ff7a4d);
  pointer-events: none;
}

/* Live status */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
}
.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6b7280;
}
.status-pill.is-open::before {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  50% { opacity: 0.6; }
}

.top-bar {
  background: linear-gradient(90deg, #2a2a2a, #333 50%, #2d2d2d);
}
.top-bar__list { justify-content: space-between; width: 100%; }
@media (min-width: 768px) {
  .top-bar__list { justify-content: flex-end; gap: 1.25rem; }
}

.site-header {
  transition: padding 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}
.site-header.is-scrolled .site-logo img { max-height: 48px; }

/* Premium Hero */
.hero--premium {
  position: relative;
  min-height: clamp(480px, 85vh, 680px);
  display: block;
  background: var(--color-surface-dark);
  color: #fff;
  overflow: hidden;
}
.hero--premium .hero__media {
  position: absolute;
  inset: 0;
}
.hero--premium .hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero--premium .hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.75) 45%, rgba(26, 26, 26, 0.35) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 74, 20, 0.2), transparent 50%);
}
.hero--premium .hero__mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(255, 74, 20, 0.15), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.05), transparent 35%);
  pointer-events: none;
}
.hero--premium .hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 5rem) 0;
  max-width: 720px;
}
.hero__eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.hero__badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 74, 20, 0.2);
  border: 1px solid rgba(255, 74, 20, 0.45);
  color: #ffb89e;
}
.hero--premium h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: none;
  margin-bottom: 1.25rem;
}
.hero--premium h1 span {
  color: var(--color-accent);
}
.hero__lead { font-size: clamp(1.05rem, 2.2vw, 1.25rem); max-width: 38rem; }
.hero__actions { margin-top: 2rem; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  opacity: 0.9;
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__meta-item svg { width: 20px; height: 20px; color: var(--color-accent); }
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-align: center;
  animation: bob 2.5s ease-in-out infinite;
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 32px;
  margin: 0.5rem auto 0;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Trust strip */
.trust-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
}
.trust-strip__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.trust-strip__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 74, 20, 0.35);
}
.trust-strip__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border-radius: var(--radius);
  margin-bottom: 0.25rem;
}
.trust-strip__icon svg { width: 22px; height: 22px; }
.trust-strip__item strong { font-size: 0.95rem; color: var(--color-primary); }
.trust-strip__item span { font-size: 0.85rem; color: var(--color-text-muted); }

/* Bento grid */
.bento {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
  }
  .bento__zoll { grid-column: span 7; }
  .bento__lager { grid-column: span 5; }
  .bento__transport { grid-column: span 5; }
  .bento__cta { grid-column: span 7; }
}
.bento-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--color-accent-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
}
.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.bento-card:hover::before { opacity: 1; }
.bento-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.bento-card__icon svg { width: 28px; height: 28px; }
.bento-card h3 { margin: 0 0 0.5rem; font-size: 1.35rem; }
.bento-card p { flex: 1; color: var(--color-text-muted); margin: 0 0 1.25rem; }
.bento-card--dark {
  background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
  color: #fff;
  border-color: transparent;
}
.bento-card--dark p { color: rgba(255, 255, 255, 0.75); }
.bento-card__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.bento-card__eyebrow--muted { color: rgba(255, 255, 255, 0.55); }
.bento-card--dark .bento-card__lead {
  flex: 1;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.25rem;
}
.bento-card--dark .btn--on-dark {
  align-self: flex-start;
  border-radius: 999px;
  padding: 0.8rem 1.45rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

/* Accent CTA bento – mesh gradient, white pill CTA */
.bento-card--accent {
  padding: 0;
  background: linear-gradient(148deg, #ff6a38 0%, var(--color-accent) 38%, #d63a0a 100%);
  color: #fff;
  border-color: transparent;
  isolation: isolate;
}
.bento-card--accent::before {
  width: 200px;
  height: 200px;
  top: -20%;
  right: -5%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 68%);
  opacity: 0.4;
}
.bento-card--accent:hover::before { opacity: 0.75; }
.bento-card__accent-bg,
.bento-card__accent-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bento-card__accent-bg {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.14) 0%, transparent 42%),
    repeating-linear-gradient(
      -14deg,
      transparent,
      transparent 26px,
      rgba(255, 255, 255, 0.035) 26px,
      rgba(255, 255, 255, 0.035) 27px
    );
}
.bento-card__accent-mesh {
  background:
    radial-gradient(ellipse 75% 55% at 92% 8%, rgba(255, 255, 255, 0.22), transparent 58%),
    radial-gradient(ellipse 45% 40% at 8% 92%, rgba(0, 0, 0, 0.18), transparent 52%);
}
.bento-card__cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: inherit;
  padding: clamp(1.5rem, 3vw, 2rem);
  max-width: min(100%, 26rem);
}
.bento-card__icon--on-accent {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.bento-card--accent .bento-card__eyebrow { color: rgba(255, 255, 255, 0.82); }
.bento-card--accent h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.bento-card--accent .bento-card__lead {
  flex: 1;
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 36ch;
}
.btn--accent-cta {
  display: inline-flex;
  align-self: flex-start;
  gap: 0.45rem;
  background: #fff;
  color: var(--color-primary);
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, color 0.3s;
}
.btn--accent-cta:hover {
  background: #fff;
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}
.btn--accent-cta .icon { transition: transform 0.3s var(--ease-out); }
.btn--accent-cta:hover .icon { transform: translateX(3px); }
.bento-card__cta-deco {
  position: absolute;
  right: clamp(1rem, 4vw, 2.25rem);
  bottom: clamp(1rem, 4vw, 2rem);
  width: 148px;
  height: 148px;
  z-index: 0;
  pointer-events: none;
}
.bento-card__cta-deco-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s var(--ease-out);
}
.bento-card--accent:hover .bento-card__cta-deco-icon--phone { transform: translateY(-4px); }
.bento-card--accent:hover .bento-card__cta-deco-icon--mail { transform: translate(-3px, -6px); }
.bento-card__cta-deco-icon--phone { right: 0; bottom: 18px; }
.bento-card__cta-deco-icon--mail { right: 52px; bottom: 74px; }
@media (max-width: 520px) {
  .bento-card__cta-deco {
    width: 110px;
    height: 110px;
    opacity: 0.55;
  }
  .bento-card__cta-deco-icon {
    width: 44px;
    height: 44px;
  }
  .bento-card__cta-deco-icon--mail { right: 40px; bottom: 52px; }
}

/* Process */
.process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .process-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
.process-timeline__step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
}
.process-timeline__nr {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.process-timeline__step h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.process-timeline__step p { margin: 0; font-size: 0.9rem; color: var(--color-text-muted); }

/* Industries */
.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.industry-pills li {
  padding: 0.5rem 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.industry-pills li:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-soft);
}

/* Location block */
.location-showcase {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  overflow: hidden;
}
@media (min-width: 900px) {
  .location-showcase { grid-template-columns: 1fr 1fr; }
}
.location-showcase__map-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(51, 51, 51, 0.05), rgba(51, 51, 51, 0.15)),
    repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(0,0,0,0.03) 24px, rgba(0,0,0,0.03) 25px),
    repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(0,0,0,0.03) 24px, rgba(0,0,0,0.03) 25px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-pin {
  width: 56px;
  height: 56px;
  background: var(--color-accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 8px 24px var(--color-accent-glow);
}
.location-pin::after {
  content: "";
  position: absolute;
  inset: 14px;
  background: #fff;
  border-radius: 50%;
}
.location-showcase__highway {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(26, 26, 26, 0.85);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
}

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--color-surface);
}
.faq__heading { margin: 0; }
.faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: none;
  background: none;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--color-primary);
}
.faq__trigger:hover { color: var(--color-accent); }
.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-accent-soft);
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--color-accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq__icon::before { width: 12px; height: 2px; }
.faq__icon::after { width: 2px; height: 12px; transition: transform 0.25s; }
.faq__trigger[aria-expanded="true"] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__panel {
  padding: 0 1.25rem 1.1rem;
}
.faq__panel p { margin: 0; color: var(--color-text-muted); }
.faq__panel[hidden] { display: none; }

/* Team filter */
.team-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.filter-chip {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font: inherit;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-chip.is-active,
.filter-chip:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.team-card {
  transition: opacity 0.3s, transform 0.3s;
}
.team-card.is-hidden {
  display: none;
}
.team-card__dept {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

/* Service layout */
.service-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .service-layout {
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}
.service-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.service-sidebar__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin: 0 0 0.75rem;
}
.service-sidebar ul { list-style: none; padding: 0; margin: 0; }
.service-sidebar a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 500;
}
.service-sidebar li.is-active a,
.service-sidebar a:hover {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}
.service-sidebar__cta {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}
.service-sidebar__cta p { margin: 0 0 0.75rem; font-size: 0.9rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* Page hero premium */
.page-hero--premium {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--color-surface-dark);
  color: #fff;
  border-bottom: none;
  overflow: hidden;
}
.page-hero--premium .page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(255, 74, 20, 0.25), transparent 55%),
    linear-gradient(180deg, #2a2a2a, #1a1a1a);
}
.page-hero--premium .page-hero__inner { position: relative; z-index: 1; }
.page-hero--premium h1 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.page-hero--premium .page-hero__lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 55ch;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.page-hero--premium .btn-group {
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Premium breadcrumb (pill trail) */
.breadcrumb--premium {
  margin: 0 0 1.25rem;
}
.breadcrumb__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}
.section-label--hero {
  margin: 0;
  color: rgba(255, 122, 77, 0.95);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}
.breadcrumb__trail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb__item,
.breadcrumb__sep {
  display: inline-flex;
  align-items: center;
}
.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0 0.1rem;
  user-select: none;
}
.breadcrumb__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}
.breadcrumb__chip--link {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
}
.breadcrumb__chip--link:hover,
.breadcrumb__chip--link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
  outline: none;
}
.breadcrumb__chip--home .icon {
  opacity: 0.9;
}
.breadcrumb__chip--home .icon svg {
  width: 0.95rem;
  height: 0.95rem;
}
.breadcrumb__chip--current {
  color: #fff;
  background: rgba(255, 74, 20, 0.22);
  border: 1px solid rgba(255, 122, 77, 0.45);
  box-shadow: 0 4px 16px rgba(255, 74, 20, 0.15);
}
.page-hero--premium .breadcrumb a {
  text-decoration: none;
}

.page-hero--has-media {
  min-height: clamp(220px, 32vw, 320px);
}
.page-hero--has-media .page-hero__bg--media {
  position: absolute;
  inset: 0;
}
.page-hero--has-media .page-hero__bg--media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}
.page-hero--has-media .page-hero__bg--media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26, 26, 26, 0.94) 0%, rgba(26, 26, 26, 0.78) 50%, rgba(26, 26, 26, 0.55) 100%),
    radial-gradient(ellipse at 75% 15%, rgba(255, 74, 20, 0.22), transparent 55%);
}
.page-hero--has-media .page-hero__inner {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

/* Ghost / outline buttons on dark or image backgrounds */
.hero--premium .btn--ghost,
.page-hero--premium .btn--ghost,
.cta-band .btn--ghost,
.bento-card--dark .btn--ghost,
.zoll-calc__result-card .btn--ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.hero--premium .btn--ghost:hover,
.page-hero--premium .btn--ghost:hover,
.cta-band .btn--ghost:hover,
.bento-card--dark .btn--ghost:hover,
.zoll-calc__result-card .btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.hero--premium .btn--outline,
.page-hero--premium .btn--outline,
.cta-band .btn--outline,
.zoll-calc__result-card .btn--outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.hero--premium .btn--outline:hover,
.page-hero--premium .btn--outline:hover,
.cta-band .btn--outline:hover,
.zoll-calc__result-card .btn--outline:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* Zollrechner */
.section--zoll-calc {
  padding-top: clamp(2rem, 5vw, 3.5rem);
}
.zoll-calc-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}
.zoll-calc-panel__intro {
  max-width: 62ch;
  margin-bottom: 2rem;
}
.zoll-calc-panel__title {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.02em;
}
.zoll-calc-panel__intro p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.zoll-calc__layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 960px) {
  .zoll-calc__layout {
    grid-template-columns: 1fr minmax(280px, 360px);
    gap: 2rem;
  }
}
.zoll-calc__form-card {
  background: linear-gradient(165deg, #fff 0%, #fafafa 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}
.zoll-calc__form-head h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}
.zoll-calc__form-lead {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.zoll-calc__fieldset {
  border: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.zoll-calc__fieldset legend {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.85rem;
  padding: 0;
}
.zoll-calc__fieldset .form-group:last-child {
  margin-bottom: 0;
}
.zoll-calc__input {
  border-radius: 12px;
  border-color: var(--color-border);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.zoll-calc__input:hover {
  border-color: rgba(255, 74, 20, 0.35);
}
.zoll-calc__input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}
.zoll-calc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border);
  margin-top: 0.5rem;
}
.zoll-calc__result-card {
  background: linear-gradient(155deg, #1f1f1f 0%, #2d2d2d 55%, #252525 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  position: sticky;
  top: calc(var(--header-bar-h, 76px) + 1.25rem);
}
.zoll-calc__result-card.is-updated {
  animation: zoll-result-pulse 0.45s var(--ease-out);
}
@keyframes zoll-result-pulse {
  0% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18); }
  40% { box-shadow: 0 0 0 4px rgba(255, 74, 20, 0.35), 0 20px 40px rgba(0, 0, 0, 0.22); }
  100% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18); }
}
.zoll-calc__result-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffb89e;
  background: rgba(255, 74, 20, 0.2);
  border: 1px solid rgba(255, 74, 20, 0.4);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.75rem;
}
.zoll-calc__result-head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  color: #fff;
}
.zoll-calc__result-lead {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
}
.zoll-calc__result-rows {
  margin: 0 0 1rem;
  padding: 0;
}
.zoll-calc__result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.zoll-calc__result-row dt {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}
.zoll-calc__result-row dd {
  margin: 0;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #fff;
}
.zoll-calc__result-row--total {
  border-bottom: none;
  padding-top: 1rem;
  margin-top: 0.25rem;
}
.zoll-calc__result-row--total dt {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.zoll-calc__result-row--total dd {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-accent);
}
.zoll-calc__result-hint {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}
.zoll-calc__result-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.zoll-calc__disclaimer {
  margin: 1.75rem 0 0;
  padding: 1rem 1.15rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}
.zoll-calc__disclaimer a {
  font-weight: 600;
  color: var(--color-accent);
}
.zoll-calc__below {
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
.zoll-calc__figure {
  margin: 0 0 1.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.zoll-calc__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (max-width: 959px) {
  .zoll-calc__result-card {
    position: static;
  }
}

/* FAB + Back to top */
.fab-wrap {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.fab-main {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--color-accent);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 28px var(--color-accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease-out), background 0.2s;
}
.fab-main:hover { transform: scale(1.06); background: var(--color-accent-hover); }
.fab-main svg { width: 24px; height: 24px; }
.fab-menu {
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease-out);
}
.fab-wrap.is-open .fab-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fab-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 500;
  white-space: nowrap;
  border-radius: var(--radius);
}
.fab-menu a:hover { background: var(--color-accent-soft); color: var(--color-accent); }
.fab-menu svg { width: 18px; height: 18px; }

.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 799;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-primary);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}
.contact-info {
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-primary);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 10002;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Teaser grid */
.teaser-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .teaser-grid { grid-template-columns: repeat(3, 1fr); }
}
.teaser-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}
.teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.teaser-card strong { display: block; margin-bottom: 0.35rem; color: var(--color-primary); }

/* Section label */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

/* Stats premium */
.stats--premium .stat {
  background: linear-gradient(145deg, var(--color-surface), var(--color-bg-alt));
  border: 1px solid var(--color-border);
}
.stats--premium .stat__value {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

/* Contact quick topics */
.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.topic-chip {
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-bg-alt);
  font-size: 0.8125rem;
  cursor: pointer;
  transition: all 0.2s;
}
.topic-chip:hover,
.topic-chip.is-selected {
  border-color: var(--color-accent);
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

/* Footer premium */
.site-footer {
  background: linear-gradient(180deg, #1f1f1f 0%, #141414 100%);
}
.site-footer__newsletter {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  font-size: 0.875rem;
}
.site-footer__newsletter a { font-weight: 600; }

/* 404 */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}
.error-page h1 {
  font-size: clamp(4rem, 15vw, 8rem);
  line-height: 1;
  color: var(--color-accent);
  margin: 0;
}
.error-page p { max-width: 40ch; margin: 1rem auto 2rem; color: var(--color-text-muted); }

/* Downloads enhanced */
.download-card {
  transition: transform 0.3s, box-shadow 0.3s;
}
.download-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.download-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: 0.75rem;
}

.section--compact { padding: clamp(1.5rem, 4vw, 2.5rem) 0; }
.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.feature-list li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 0.15rem;
}
@media (min-width: 768px) {
  .top-bar__hours-hide { display: list-item; }
}
@media (max-width: 767px) {
  .top-bar__hours-hide { display: none; }
}

@media (max-width: 1023px) {
  .fab-wrap { bottom: 5rem; }
}
