/* ==========================================================================
   WERT PAKET.EU – Hauptstylesheet
   Adaptiert von ChronoCargo.de Premium Dark Theme
   Farbpalette: Navy Deep + Gold/Olive (#93834E)
   Footer: 3-Zonen-Modell nach MPE WERT TRANSPORT® Styleguide
   ========================================================================== */

/* ---------- Google Fonts: Inter (Body) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Local Webfonts: Sifonn Pro (falls vorhanden) ---------- */
/* Falls Sifonn Pro nicht verfuegbar: Inter + system-ui als Fallback */
/*
@font-face {
  font-family: 'Sifonn Pro';
  src: url('../fonts/SifonnPro-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sifonn Pro';
  src: url('../fonts/SifonnPro-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Abnes';
  src: url('../fonts/Abnes-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
  /* ---- Farben (wertpaket.eu Palette) ---- */
  --color-bg:          #111827;    /* Navy Deep – Seitenhintergrund */
  --color-card-bg:     #1B2838;    /* Navy – Karten, Sektionen */
  --color-gold:        #93834E;    /* Gold/Olive – Primaer-Akzent */
  --color-gold-dark:   #7A6B3F;    /* Gold Dunkel */
  --color-gold-light:  #B8A87A;    /* Gold Hell – Hover */
  --color-white:       #ffffff;
  --color-white-soft:  rgba(255, 255, 255, 0.85);
  --color-white-muted: rgba(255, 255, 255, 0.55);
  --color-border:      rgba(147, 131, 78, 0.2);     /* Gold/Olive transparent */
  --color-card-shadow: rgba(0, 0, 0, 0.4);
  --color-overlay:     rgba(17, 24, 39, 0.7);        /* Navy Deep transparent */

  /* ---- Typografie ---- */
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', 'Inter', serif;
  /* Wenn Sifonn Pro vorhanden:
     --font-heading: 'Sifonn Pro', 'Inter', system-ui, sans-serif; */

  /* ---- Abstande ---- */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* ---- Layout ---- */
  --section-py: var(--space-3xl);
  --section-px: var(--space-md);
  --max-width:  1200px;
  --header-h:   64px;

  /* ---- Radien ---- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* ---- Animation ---- */
  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:  0.3s var(--ease-out);

  /* ---- Footer (MPE WERT TRANSPORT® Styleguide) ---- */
  --mwt-gold:          #93834E;
  --mwt-gold-light:    #B8A87A;
  --mwt-navy:          #1B2838;
  --mwt-navy-deep:     #111827;
  --mwt-navy-darkest:  #0F172A;
  --mwt-text-white:    #FFFFFF;
  --mwt-text-light:    #B0B0B0;
  --mwt-text-muted:    #9CA3AF;
  --mwt-text-subtle:   #6B7280;
  --mwt-footer-px:     40px;
  --mwt-footer-px-mob: 20px;
  --mwt-logo-h:        60px;
  --mwt-logo-h-mob:    40px;
  --mwt-logo-clearance:16px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
  overscroll-behavior: none;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-white-soft);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--color-gold-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: 1.3;
  font-weight: 700;
}

ul, ol {
  list-style: none;
}

/* ---- Scrollbar (Webkit) ---- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(147, 131, 78, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(147, 131, 78, 0.5);
}

/* ==========================================================================
   LAYOUT HELPERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-dark {
  background: var(--color-card-bg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-padding {
  padding: var(--section-py) 0;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(17, 24, 39, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition),
              box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(17, 24, 39, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header-logo img {
  height: 40px;
  width: auto;
}

.header-logo span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.5px;
}

/* ---- Desktop Navigation ---- */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--color-white-soft);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--color-gold);
}

.nav-link:hover::after {
  width: 100%;
}

/* ---- CTA Button im Header ---- */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-bg);
  background: var(--color-gold);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--color-gold-light);
  color: var(--color-bg);
  transform: translateY(-1px);
}

/* ---- Hamburger Toggle (Mobil) ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + var(--space-2xl)) var(--section-px) var(--space-2xl);
  overflow: hidden;
}

/* Gradient-Hintergrund (kein Foto noetig) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #1B2838 0%, #0F172A 70%);
  z-index: 0;
}

/* Subtiles Muster-Overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 20%,
    rgba(147, 131, 78, 0.06) 0%,
    transparent 60%
  ),
  radial-gradient(
    ellipse at 70% 80%,
    rgba(147, 131, 78, 0.04) 0%,
    transparent 50%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-logo-full {
  max-width: 420px;
  margin: 0 auto var(--space-xl);
  filter: drop-shadow(0 0 30px rgba(147,131,78,0.35));
}

.hero-overline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

/* Gold Divider unter Trust-Badges */
.hero-divider {
  width: 200px;
  max-width: 60%;
  height: 1px;
  background: rgba(147,131,78,0.3);
  margin: var(--space-xl) auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--color-white-muted);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.6;
}

/* ---- CTA Buttons ---- */
.cta-group {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-bg);
  background: var(--color-gold);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(147, 131, 78, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
  background: transparent;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: rgba(147, 131, 78, 0.1);
  border-color: var(--color-gold-light);
  color: var(--color-gold-light);
  transform: translateY(-2px);
}

/* ---- Trust Badges (Hero) ---- */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-white-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
  flex-shrink: 0;
}

/* ---- Scroll Indicator ---- */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-white-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounceDown 2s infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  fill: var(--color-gold);
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================================================
   SECTION HEADERS (Overline + Title + Gold Line)
   ========================================================================== */
.section-overline {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  margin-bottom: var(--space-md);
}

hr.gold-line {
  border: none;
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: 0 auto var(--space-2xl);
  border-radius: 2px;
}

/* ==========================================================================
   SERVICES (Leistungen)
   ========================================================================== */
.services {
  padding: var(--section-py) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.service-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border-top: 3px solid var(--color-gold);
  box-shadow: 0 4px 24px var(--color-card-shadow);
  transition: transform var(--transition),
              box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(147, 131, 78, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-gold);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-white-muted);
  line-height: 1.7;
}

/* ==========================================================================
   ABOUT / PREISBEISPIELE
   ========================================================================== */
.about {
  background: var(--color-card-bg);
  padding: var(--section-py) 0;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--color-gold);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-white-soft);
  margin-bottom: var(--space-xl);
}

.about-highlight {
  font-style: italic;
  color: var(--color-gold);
  font-size: 1.15rem;
  border-left: 3px solid var(--color-gold);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
  line-height: 1.8;
}

/* ---- Stats Row (Preise) ---- */
.stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  padding: var(--space-xl) 0;
  margin-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-white-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: var(--space-xs);
}

/* ==========================================================================
   VERSICHERTE GUETER (Icon-Grid)
   ========================================================================== */
.goods {
  padding: var(--section-py) 0;
}

.goods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-lg);
}

.goods-section {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

.goods-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-gold);
  color: var(--color-gold);
}

.goods-heading--excluded {
  color: #ef4444;
  border-bottom-color: #ef4444;
}

.goods-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.goods-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-gold);
  transition: background var(--transition), transform var(--transition);
}

.goods-item:hover {
  background: rgba(147, 131, 78, 0.08);
  transform: translateX(4px);
}

.goods-item--excluded {
  border-left-color: #ef4444;
  opacity: 0.75;
}

.goods-item--excluded:hover {
  background: rgba(239, 68, 68, 0.06);
}

.goods-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 2px;
}

.goods-item--excluded .goods-icon {
  color: #ef4444;
}

.goods-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.goods-item > div strong {
  font-size: 0.95rem;
  color: var(--color-white);
}

.goods-item > div span {
  font-size: 0.85rem;
  color: var(--color-white-soft);
  line-height: 1.4;
}

.goods-item--excluded > div strong {
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  color: var(--color-white-muted);
}

.goods-item--excluded > div span {
  color: var(--color-white-muted);
}

/* ==========================================================================
   FAQ (Accordion)
   ========================================================================== */
.faq {
  padding: var(--section-py) 0;
  background: var(--color-card-bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
  list-style: none;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-left: var(--space-md);
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item summary:hover {
  color: var(--color-gold);
}

.faq-answer {
  padding: 0 0 var(--space-lg) 0;
  color: var(--color-white-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  animation: faqSlideIn 0.3s ease;
}

@keyframes faqSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   KONTAKT
   ========================================================================== */
.contact {
  padding: var(--section-py) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

/* ---- Kontaktdaten (Links) ---- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

/* Direct SVG icon class (used in HTML) */
.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-gold);
  stroke: var(--color-gold);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(147, 131, 78, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-gold);
}

.contact-item-label {
  font-size: 0.8rem;
  color: var(--color-white-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-item-value {
  font-size: 1rem;
  color: var(--color-white);
  font-weight: 500;
}

.contact-item-value a {
  color: var(--color-white);
  transition: color var(--transition);
}

.contact-item-value a:hover {
  color: var(--color-gold);
}

/* ---- Kontaktformular (Rechts) ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-white-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-white);
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition),
              box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(147, 131, 78, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-white-muted);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  align-self: flex-start;
}

/* ==========================================================================
   3-ZONEN FOOTER (MPE WERT TRANSPORT® Styleguide)
   ========================================================================== */

/* ---- ZONE A: Trust-Bar ---- */
.mwt-footer__trust {
  background: var(--mwt-gold);
  padding: 14px var(--mwt-footer-px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  min-height: 52px;
}

.mwt-footer__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
}

.mwt-footer__trust-item svg,
.mwt-footer__trust-item img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mwt-footer__trust-item svg {
  fill: var(--color-white);
}

/* ---- ZONE B: Navigation (4 Spalten) ---- */
.mwt-footer__nav {
  background: var(--mwt-navy);
  padding: var(--space-3xl) var(--mwt-footer-px);
}

.mwt-footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
  max-width: var(--max-width);
  margin: 0 auto;
}

.mwt-footer__col h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--mwt-text-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--mwt-gold);
  display: inline-block;
}

.mwt-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mwt-footer__col a {
  font-size: 13px;
  color: var(--mwt-text-light);
  line-height: 1.8;
  transition: color var(--transition),
              padding-left var(--transition);
}

.mwt-footer__col a:hover {
  color: var(--mwt-gold-light);
  padding-left: 4px;
}

/* Kontaktspalte: spezielle Styles */
.mwt-footer__col .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 13px;
  color: var(--mwt-text-light);
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}

.mwt-footer__col .footer-contact-item svg {
  width: 14px;
  height: 14px;
  fill: var(--mwt-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---- Portal-Leiste (zwischen Zone B und C) ---- */
.mwt-footer__portals {
  background: var(--mwt-navy);
  padding: var(--space-md) var(--mwt-footer-px);
  text-align: center;
  font-size: 11px;
  color: var(--mwt-text-subtle);
  border-top: 1px solid rgba(147, 131, 78, 0.15);
}

.mwt-footer__portals a {
  color: var(--mwt-text-muted);
  font-size: 11px;
  transition: color var(--transition);
}

.mwt-footer__portals a:hover {
  color: var(--mwt-gold-light);
}

.mwt-footer__portals .portal-sep {
  margin: 0 6px;
  color: var(--mwt-text-subtle);
}

/* ---- ZONE C: Brand Strip (Dachmarke) ---- */
.mwt-footer__brand {
  background: var(--mwt-navy-deep);
  padding: var(--space-md) var(--mwt-footer-px);
  border-top: 1px solid rgba(147, 131, 78, 0.1);
}

.mwt-footer__brand-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.mwt-footer__logo {
  flex-shrink: 0;
}

.mwt-footer__brand-logo {
  height: var(--mwt-logo-h);
  width: auto;
}

.mwt-footer__legal {
  text-align: right;
}

.mwt-footer__legal p {
  margin: 0;
  line-height: 1.6;
}

.mwt-footer__brand-text {
  text-align: right;
}

.mwt-footer__brand-claim {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-gold);
  line-height: 1.4;
}

.mwt-footer__brand-legal {
  margin: 0.2rem 0 0 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.3;
}

.mwt-footer__legal p:first-child {
  font-size: 12px;
  color: var(--mwt-text-muted);
}

.mwt-footer__legal p:nth-child(2) {
  font-size: 11px;
  color: var(--mwt-text-subtle);
  margin-top: 2px;
}

.mwt-footer__legal p:nth-child(3) {
  font-size: 11px;
  color: var(--mwt-text-subtle);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.gold-text {
  color: var(--color-gold);
}

.gold-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin: var(--space-sm) 0;
}

.text-center { text-align: center; }
.text-muted  { color: var(--color-white-muted); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out),
              transform 0.6s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s var(--ease-out),
              transform 0.6s var(--ease-out);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s var(--ease-out),
              transform 0.6s var(--ease-out);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s var(--ease-out),
              transform 0.6s var(--ease-out);
}

.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered Children */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }

/* ---- Respekt fuer prefers-reduced-motion ---- */
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-left,
  .fade-in-right,
  .fade-in-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroll-indicator {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   RESPONSIVE – MOBILE (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {

  /* ---- Header Mobile ---- */
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(12px);
    padding: var(--space-xl) var(--section-px);
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
    border-bottom: 1px solid var(--color-border);
    z-index: 999;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: var(--space-md) 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(147, 131, 78, 0.1);
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-md);
    padding: 14px;
  }

  /* ---- Hero Mobile ---- */
  .hero {
    min-height: 90vh;
    padding-top: calc(var(--header-h) + var(--space-xl));
  }

  .hero-logo-full {
    max-width: 280px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .scroll-indicator {
    display: none;
  }

  /* ---- Services Mobile ---- */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: var(--space-xl);
  }

  /* ---- About / Stats Mobile ---- */
  .about::before {
    width: 3px;
  }

  .stats {
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
  }

  .stat-number {
    font-size: 2rem;
  }

  /* ---- Goods Mobile ---- */
  .goods-grid {
    grid-template-columns: 1fr;
  }

  /* ---- Contact Mobile ---- */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-submit .btn-primary {
    width: 100%;
  }

  /* ---- Footer Mobile ---- */
  .mwt-footer__trust {
    padding: var(--space-md) var(--mwt-footer-px-mob);
    flex-direction: column;
    gap: var(--space-sm);
    min-height: auto;
  }

  .mwt-footer__trust-item {
    font-size: 12px;
  }

  .mwt-footer__nav {
    padding: var(--space-2xl) var(--mwt-footer-px-mob);
  }

  .mwt-footer__nav-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .mwt-footer__col h3 {
    font-size: 13px;
  }

  .mwt-footer__portals {
    padding: var(--space-md) var(--mwt-footer-px-mob);
    font-size: 10px;
    line-height: 1.8;
  }

  .mwt-footer__brand {
    padding: var(--space-xl) var(--mwt-footer-px-mob);
  }

  .mwt-footer__brand-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
  }

  .mwt-footer__brand-logo {
    height: var(--mwt-logo-h-mob);
    margin: 0 auto;
  }

  .mwt-footer__legal {
    text-align: center;
  }

  .mwt-footer__brand-text {
    text-align: center;
  }

  .mwt-footer__legal p:first-child {
    font-size: 11px;
  }

  .mwt-footer__legal p:nth-child(2),
  .mwt-footer__legal p:nth-child(3) {
    font-size: 10px;
  }
}

/* ==========================================================================
   RESPONSIVE – TABLET (min-width: 769px)
   ========================================================================== */
@media (min-width: 769px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

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

/* ==========================================================================
   RESPONSIVE – DESKTOP (min-width: 969px)
   ========================================================================== */
@media (min-width: 969px) {
  :root {
    --header-h: 72px;
    --section-py: var(--space-4xl);
  }

  .header-logo img {
    height: 48px;
  }

  .nav {
    gap: var(--space-2xl);
  }

  .nav-list {
    gap: var(--space-2xl);
  }

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

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

  .mwt-footer__nav-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3xl);
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---- Sehr grosse Bildschirme ---- */
@media (min-width: 1280px) {
  .mwt-footer__trust {
    gap: var(--space-3xl);
  }

  .hero-logo-full {
    max-width: 480px;
  }
}

/* ---- Back to Top Button ---- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
  }
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}
