/* ═══════════════════════════════════════════════════════
   components.css — Brennstein Dent WordPress Theme
   Complete port of all component styles from index.css.
   Vars live in style.css · Keyframes live in animations.css
   ═══════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────
   REUSABLE BUTTON SYSTEM
───────────────────────────────────────── */

.btn-primary {
  background: linear-gradient(to bottom, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D4AF37;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.3s var(--ease);
}
.btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(to bottom, #FFDF40 0%, #E5C100 50%, #D4AF37 100%);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
  border-color: #FFD700;
}

.btn-secondary {
  background: var(--charcoal);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s var(--ease);
}
.btn-secondary:hover {
  background: var(--charcoal-soft);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.btn-secondary-dark {
  background: var(--white);
  color: var(--charcoal);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease);
}
.btn-secondary-dark:hover {
  background: var(--gray-100);
  transform: translateY(-3px);
  border-color: var(--gold);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}

.btn-gold-sm {
  background: var(--gold);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s var(--ease);
}

.btn-outline {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s var(--ease);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-blue {
  background: var(--blue-slate-dark);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue-slate-dark);
  transition: all 0.3s var(--ease);
}
.btn-blue:hover {
  background: var(--blue-slate);
  border-color: var(--blue-slate);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-blue.full-width { width: 100%; }

/* ── Contact / back buttons ── */
.btn-contact-subtle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: 0.3s var(--ease);
}
.btn-contact-subtle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--white);
}

.btn-back-text {
  font-size: 0.85rem;
  color: var(--charcoal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: 0.3s var(--ease);
}
.btn-back-text:hover { opacity: 0.7; }

/* ─────────────────────────────────────────
   TYPOGRAPHY UTILITIES
───────────────────────────────────────── */

.gold-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.badge {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-dark);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  display: inline-block;
  border: 1px solid var(--gold-glow);
}

/* ─────────────────────────────────────────
   HEADER — two-level stable layout
   (keyframe transitions are in animations.css)
───────────────────────────────────────── */

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Top bar */
.top-bar {
  height: 46px;
  background: var(--blue-slate-dark);
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.top-left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.top-left span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.top-left svg  { color: var(--gold); }
.top-left .separator { opacity: 0.2; }

.top-right a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 500;
  opacity: 0.8;
  font-size: 0.8rem;
}
.top-right a svg { color: var(--gold); }

/* Main nav */
.main-nav {
  height: 54px;
  display: flex;
  align-items: center;
  transition: all 0.4s var(--ease);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--blue-slate);
}
.nav-container.centered-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.nav-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}
.header-cta {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}
.logo-centered {
  flex: 0 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.logo-centered img {
  height: 42px;
  width: auto;
  transition: height 0.3s var(--ease);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-menu a,
.drop-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 0;
}
.nav-menu a:hover,
.drop-link:hover {
  opacity: 0.7;
  color: var(--gold);
}

/* Mega menu (if used via Elementor) */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  width: 600px;
  z-index: 10;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-100);
  transition: 0.3s var(--ease);
}
.dropdown:hover .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(10px);
}
.mega-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.mega-inner a {
  font-size: 0.8rem;
  color: var(--text-muted) !important;
  font-weight: 600 !important;
}
.mega-inner a:hover { color: var(--gold) !important; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */

.hero {
  height: 100vh;
  min-height: 800px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--charcoal);
  padding: 120px 0 80px;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.85;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 100%);
  z-index: -1;
}

/* Compact hero — new customer */
.hero--compact {
  height: auto;
  min-height: 280px;
  padding: 120px 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero--compact .hero-img {
  opacity: 0.92;
  filter: saturate(0.85) contrast(1.05) brightness(1.02);
}

/* Compact minimal hero — existing customer */
.hero--compact-minimal {
  height: auto;
  min-height: 180px;
  padding: 120px 0 120px;
  background: var(--gray-50);
}
.hero--compact-minimal .hero-overlay {
  background: rgba(248, 248, 250, 0.95);
}

.hero-content {
  max-width: 1000px;
  padding-top: 9rem;
  z-index: 10;
  position: relative;
}
.hero--compact .hero-content,
.hero--compact-minimal .hero-content {
  padding-top: 0;
}

.hero-subpage-label {
  max-width: 700px;
  padding-top: 1rem;
  margin: 0 auto;
  text-align: center;
}
.hero-subpage-eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

/* ─────────────────────────────────────────
   PORTAL CTA BLOCK (homepage hero content)
───────────────────────────────────────── */

.portal-cta-block {
  text-align: center;
  max-width: 900px;
  margin: -5.5rem auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portal-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(56px, 5vw, 76px);
  font-weight: 850;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.portal-headline--sm {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: none;
}

.portal-trustline {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 6.5rem;
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 500;
}

.portal-btns-wrapper {
  display: flex;
  gap: 4rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 100%;
}
.portal-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.portal-guiding-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

/* Portal main CTA button (gold) */
.btn-portal-main {
  width: 280px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(to bottom, #D4AF37 0%, #B8860B 100%);
  border: 1px solid #B8860B;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
  color: var(--white);
  text-decoration: none;
}
.btn-portal-main svg { color: var(--white); stroke: var(--white); }
.btn-portal-main:hover {
  background: linear-gradient(to bottom, #E8C14B 0%, #D4AF37 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.35);
  color: var(--white);
}
.btn-portal-main .btn-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}

/* Portal secondary CTA button (blue-slate) */
.btn-portal-secondary {
  width: 280px;
  height: 64px;
  border-radius: 12px;
  background: var(--blue-slate-dark);
  border: 1px solid rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: var(--white);
  text-decoration: none;
}
.btn-portal-secondary:hover {
  background: var(--blue-slate);
  border-color: var(--blue-slate);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  color: var(--white);
}
.btn-portal-secondary .btn-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}

/* Compact hero — smaller portal buttons */
.hero--compact .btn-portal-main,
.hero--compact .btn-portal-secondary {
  width: auto;
  height: auto;
  padding: 0.75rem 1.5rem;
}
.hero--compact .btn-portal-main .btn-label,
.hero--compact .btn-portal-secondary .btn-label {
  font-size: 0.95rem;
}

/* Security trust pill */
.security-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 3rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.security-pill svg {
  color: var(--gold-dark);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.target-audience-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1.5rem;
}

/* Back button wrapper in sub-page heroes */
.portal-back-wrapper {
  display: flex;
  justify-content: flex-start;
  padding-top: 1.5rem;
  margin-bottom: 3.5rem;
  padding-left: 2px;
}
.hero--compact .portal-back-wrapper {
  padding-top: 1rem;
  margin-top: 0;
}

/* ─────────────────────────────────────────
   BENEFITS SECTION — 3-card grid
───────────────────────────────────────── */

.benefits-section {
  background: var(--white);
  padding: 6rem 0;
  border-top: 1px solid var(--gray-100);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--gray-50);
  border-radius: 20px;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border-color: rgba(212, 175, 55, 0.25);
  background: var(--white);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-light);
  color: var(--charcoal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s var(--ease);
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.benefit-icon svg { width: 20px; height: 20px; }
.benefit-card:hover .benefit-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.06);
}
.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   PROCESS SECTION V4
───────────────────────────────────────── */

.process-v4 {
  padding: 12rem 0;
  background: #fafafc;
  overflow: hidden;
}
.process-split-v4 {
  display: flex;
  align-items: center;
  gap: 10rem;
}
.process-text-v4 { flex: 1.2; }
.process-image-v4 {
  flex: 1;
  position: relative;
}
.process-image-v4 .image-frame {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.12);
  z-index: 2;
  height: 600px;
}
.process-image-v4 .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 1.2s var(--ease);
}
.process-image-v4:hover .image-frame img {
  transform: scale(1.05);
}
.process-image-v4::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-light);
  border-radius: 40px;
  z-index: 1;
  opacity: 0.3;
}
.process-steps-v4 {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 4rem;
}
.step-item-v4 {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}
.step-item-v4:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 40px;
  top: 90px;
  width: 1px;
  height: calc(3rem - 10px);
  background: var(--gray-200);
}
.step-num-v4 {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: 0.4s var(--ease);
}
.step-item-v4:hover .step-num-v4 {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}
.step-info-v4 h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
  font-weight: 800;
}
.step-info-v4 p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   SORTIMENT CAROUSEL V5
───────────────────────────────────────── */

.sortiment-v4 {
  padding: 8rem 0;
  background: radial-gradient(circle at 50% -20%, #ffffff 0%, #f3f3f5 100%);
  overflow: hidden;
}
.filter-bar-v5 {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0 4rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
  transition: 0.3s var(--ease);
}
.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.3s var(--ease);
  transform: translateX(-50%);
}
.filter-btn.active { color: var(--charcoal); }
.filter-btn.active::after { width: 100%; }

.carousel-container-v5 {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 4rem;
}
.sortiment-carousel-v5 {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 2rem 1rem 4rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.sortiment-carousel-v5::-webkit-scrollbar { display: none; }

.cat-tile-v5 {
  min-width: 320px;
  flex: 0 0 320px;
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 15, 18, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: 0.6s var(--ease);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.cat-tile-v5:hover {
  transform: translateY(-15px);
  box-shadow: 0 50px 100px rgba(15, 15, 18, 0.08);
  border-color: var(--gold-glow);
}
.tile-img-v5 {
  height: 280px;
  background: #fff;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tile-img-v5 img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.8s var(--ease);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.06));
}
.cat-tile-v5:hover .tile-img-v5 img { transform: scale(1.08); }

.tile-info-v5 {
  padding: 2.5rem;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--gray-50);
}
.tile-info-v5 h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.tile-info-v5 p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.tile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
}
.tile-link svg { width: 16px; transition: 0.4s var(--ease); }
.cat-tile-v5:hover .tile-link svg { transform: translateX(5px); }

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-100);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s var(--ease);
}
.nav-arrow:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}
.nav-arrow.left  { left: 1rem; }
.nav-arrow.right { right: 1rem; }
.nav-arrow svg   { width: 24px; height: 24px; }

/* ─────────────────────────────────────────
   REVIEWS
───────────────────────────────────────── */

.reviews {
  padding: 6rem 0;
  background: var(--gray-50);
  color: var(--charcoal);
  text-align: center;
}
.big-rating {
  font-size: 5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.reviews .stars {
  justify-content: center;
  margin-bottom: 1rem;
  gap: 0.4rem;
}
.reviews .stars svg { width: 20px; height: 20px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}
.rev-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: left;
  border: 1px solid var(--gray-100);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}
.rev-card p {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.rev-card h5 {
  color: var(--charcoal);
  font-size: 1.15rem;
  font-weight: 700;
}

/* ─────────────────────────────────────────
   SERVICE SPLIT V3
───────────────────────────────────────── */

.service-split-v3 {
  padding: 12rem 0;
  background: var(--white);
}
.split-wrap-v3 {
  display: flex;
  align-items: center;
  gap: 8rem;
}
.split-content-v3 { flex: 1; }
.split-content-v3 h2 {
  font-size: 4.5rem;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.split-content-v3 .lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  max-width: 500px;
}
.service-list-v3 {
  list-style: none;
  margin-bottom: 4rem;
}
.service-list-v3 li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.service-list-v3 li svg { color: var(--gold); width: 22px; height: 22px; }
.split-image-v3 { flex: 1.2; }
.split-image-v3 img {
  width: 100%;
  border-radius: 40px;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--gray-100);
}

/* ─────────────────────────────────────────
   STANDORT (LOCATION)
───────────────────────────────────────── */

.standort-section {
  padding: 12rem 0;
  background: var(--gray-50);
}
.standort-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 550px;
  max-width: 1140px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.standort-content {
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.standort-content h2 {
  font-size: 2.75rem;
  margin-bottom: 3rem;
  letter-spacing: -0.04em;
  line-height: 1.15;
}
.info-grid {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin-bottom: 3.5rem;
}
.info-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.icon-box {
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: 0.3s;
}
.info-card:hover .icon-box {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.info-text span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  font-weight: 800;
  display: block;
}
.info-text p {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}
.small-detail {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.4rem;
  font-style: normal;
}
.standort-map-module {
  height: 100%;
  position: relative;
}
.standort-map-module iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) contrast(1.1) opacity(0.85);
  transition: 0.6s var(--ease);
}
.standort-map-module:hover iframe {
  filter: grayscale(0) opacity(1);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */

.main-footer {
  background: var(--blue-slate-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 1.5rem;
}

.footer-logo-col-header {
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: flex-start;
}
.footer-logo-col-header img {
  height: 54px;
  width: auto;
  opacity: 1;
}

.footer-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.footer-col p {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}
.footer-col a,
.footer-link {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-top: 0.35rem;
  transition: 0.3s var(--ease);
}
.footer-col a:hover,
.footer-link:hover {
  color: var(--gold-light);
}
.footer-note {
  font-size: 0.8rem !important;
  color: var(--white);
  margin-top: 1.25rem !important;
  font-style: italic;
  display: block;
}

/* Footer FAQ accordion */
.footer-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s var(--ease);
}
.footer-faq-item[open] {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold-glow);
}
.footer-faq-item summary {
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-faq-item summary::-webkit-details-marker { display: none; }
.footer-faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold-light);
  transition: transform 0.3s var(--ease);
}
.footer-faq-item[open] summary::after { content: '\2212'; }
.footer-faq-content {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* Footer legal bar */
.footer-legal {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 1rem;
}
.legal-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.legal-links a {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 500;
  transition: 0.3s var(--ease);
}
.legal-links a:hover { color: var(--gold-light); }
.copyright {
  font-size: 0.75rem;
  color: var(--white);
}

/* Footer map card */
.footer-map-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: 0.4s var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-map-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* ─────────────────────────────────────────
   LEGAL PAGES (Datenschutz / Impressum / AGB)
───────────────────────────────────────── */

.legal-page-content {
  max-width: 100% !important;
  width: 100% !important;
  padding: 120px 0 80px !important;
  background: var(--gray-50) !important;
}
.legal-page-content .legal-inner,
.legal-page-content > .container {
  max-width: 860px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
}
.legal-page-content h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--charcoal);
  text-align: center;
}
.legal-page-content h2 {
  font-size: 1.75rem;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  border-bottom: 2px solid var(--gold-glow);
  display: inline-block;
  padding-bottom: 0.5rem;
}
.legal-page-content h3 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--blue-slate-dark);
}
.legal-page-content p {
  margin-bottom: 1.5rem;
  max-width: 800px;
}
.legal-page-content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  max-width: 800px;
}
.legal-page-content li { margin-bottom: 0.75rem; }
.legal-page-content address {
  font-style: normal;
  margin: 1rem 0;
}
.legal-page-content a {
  color: var(--gold-dark);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
}
.legal-page-content a:hover {
  color: var(--gold);
  border-bottom-color: transparent;
}
.legal-page-content section { margin-bottom: 2rem; }

/* Goldkurse — full-width chart breakout */
.goldkurse-chart-wrap {
  width: 100%;
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
  margin: 0 0 3rem;
}
.goldkurse-chart-wrap #bullionvault-chart {
  width: 100%;
  max-width: 100%;
  height: 500px;
  margin: 0;
  border: 1px solid rgba(81, 102, 117, 0.2);
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  box-sizing: border-box;
}

/* ─────────────────────────────────────────
   NEUKUNDE PAGE (.nk-page)
───────────────────────────────────────── */

.nk-page {
  background: var(--white);
}
.nk-section {
  padding: 5rem 0;
}
.nk-section--alt      { background: var(--gray-50); }
.nk-section--faq      { background: var(--white); }

/* Über uns boxed */
.nk-section--uber-uns-boxed {
  background: var(--white);
  padding: 5rem 0;
}
.nk-container {
  max-width: 800px;
  margin: 0 auto;
}
.nk-container--boxed {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: left !important;
}
.uu-boxed-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.uu-boxed-intro {
  margin-top: 1.25rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  color: var(--text-muted);
}
.uu-main-box {
  background: #F9FAFB;
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 2.5rem 3.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.uu-box-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}
.uu-box-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.uu-box-subheading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 850;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.uu-box-quote {
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  border-left: 2px solid var(--gold);
}
.uu-box-quote p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.3;
}
.uu-box-mark {
  display: block;
  margin-top: 1rem;
  font-size: 0.6rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
}
.uu-box-divider {
  background: var(--gray-200);
  width: 1px;
  align-self: stretch;
}
.uu-box-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2.35rem;
}
.expertise-badge-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.expertise-content h5 {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
  letter-spacing: -0.01em;
}
.expertise-content p {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-muted);
  font-weight: 500;
}

/* NK typography utilities */
.nk-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.nk-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  text-align: left;
}
/* Center NK headings when inside nk-page */
.nk-page .nk-heading,
.nk-page .nk-label,
.nk-page .nk-section-subtitle {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.nk-page .nk-label        { margin-bottom: 0.75rem; }
.nk-page .nk-heading       { margin-bottom: 1rem; }
.nk-page .nk-section-subtitle { margin-bottom: 3.5rem; }

.nk-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 660px;
}
.nk-body--mt { margin-top: 1.25rem; }

.nk-body-card {
  background: var(--white);
  border-left: 2px solid var(--gold);
  padding: 2rem 2.5rem;
  border-radius: 0 16px 16px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
  margin-top: 2.5rem;
}

/* NK minimal process list */
.nk-minimal-process {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 3rem auto;
  max-width: 600px;
  text-align: left;
}
.nk-process-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.nk-process-dot {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.4rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--gold-glow);
}
.nk-process-item p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.4;
}
.nk-process-item strong {
  color: var(--gold-dark);
  font-weight: 800;
  display: block;
  margin-bottom: 0.2rem;
}

/* NK CTA group */
.nk-cta-group {
  display: flex;
  margin-top: 3rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.btn-nk-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--blue-slate-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  transition: 0.3s var(--ease);
  border: 1px solid var(--blue-slate-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-decoration: none;
}
.btn-nk-call:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
}
.btn-nk-callback {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2.25rem;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
  transition: 0.3s var(--ease);
  text-decoration: none;
}
.btn-nk-callback:hover {
  background: var(--gray-50);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* NK bullet list */
.nk-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem auto 0 auto;
  max-width: 660px;
}
.nk-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.nk-bullet-list li strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.nk-bullet-list li span {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.nk-bullet-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--gold-light);
  border-radius: 10px;
  color: var(--charcoal);
  margin-top: 0.1rem;
}
.nk-bullet-icon svg { width: 18px; height: 18px; }

/* NK advantages grid */
.nk-advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.nk-advantage-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.75rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  transition: 0.35s var(--ease);
  text-align: left !important;
}
.nk-advantage-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}
.nk-adv-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-top: 0.15rem;
}
.nk-adv-icon svg { width: 18px; height: 18px; }
.nk-advantage-item strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
  font-family: 'Outfit', sans-serif;
}
.nk-advantage-item span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* NK FAQ */
.nk-faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.nk-faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.3s;
}
.nk-faq-item:hover { border-color: rgba(212, 175, 55, 0.3); }
.nk-faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.nk-faq-item summary::-webkit-details-marker { display: none; }
.nk-faq-item summary::after {
  content: '+';
  font-size: 1.1rem;
  color: var(--gold-dark);
  font-weight: 400;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.nk-faq-item[open] summary::after { transform: rotate(45deg); }
.nk-faq-item[open] summary {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.nk-faq-content { padding: 1rem 1.5rem 1.25rem; }
.nk-faq-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   BESTANDSKUNDE QUICK-ACTION CARD
───────────────────────────────────────── */

.bk-action-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding-top: 0;
  margin: 0 auto;
}
.bk-eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  margin-bottom: 0;
}
.bk-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 850;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
}
.bk-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.bk-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.25rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  text-align: left;
  margin-top: 1rem;
}
.bk-card label {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.bk-card .helper-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.6rem;
}

/* Input group */
.input-group { margin-bottom: 1.25rem; }
.helper-text {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

/* Portal input — light variant (bestandskunde card) */
.portal-input {
  width: 100%;
  padding: 1rem 1.75rem;
  border-radius: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: 0.3s;
}
.portal-input::placeholder {
  color: var(--gray-400) !important;
  opacity: 1 !important;
}
.portal-input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
}

/* ─────────────────────────────────────────
   ICON UTILITIES
───────────────────────────────────────── */

.bd-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   BURGER MENU (mobile nav)
───────────────────────────────────────── */

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}
.burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */

@media (max-width: 1200px) {
  .process-split-v4 { gap: 5rem; }
}

@media (max-width: 1024px) {
  .burger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--white);
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: none;
    align-items: center;
    z-index: 2000;
  }
  .nav-menu.active { display: flex; }
  .nav-menu a, .drop-link {
    color: var(--text) !important;
    font-size: 1.5rem;
    font-weight: 800;
  }
}

@media (max-width: 992px) {
  .process-split-v4 {
    flex-direction: column;
    gap: 8rem;
  }
  .process-text-v4 { text-align: center; }
}

@media (max-width: 900px) {
  .main-footer { padding: 1.5rem 0 1rem; }
  .footer-trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0;
  }
  .footer-col {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
  .footer-col h4 { margin-bottom: 0.75rem; }
  .footer-logo-col-header { justify-content: center; }
  .footer-faq-accordion { gap: 0.5rem; width: 100%; }
  .footer-faq-item { width: 100%; max-width: none; }
  .footer-faq-item summary { padding: 0.8rem 1.2rem; font-size: 0.9rem; }
  .footer-faq-content { padding: 0 1.2rem 1.2rem; font-size: 0.8rem; }

  .uu-main-box { padding: 2.5rem; }
  .uu-box-grid { grid-template-columns: 1fr; gap: 3rem; }
  .uu-box-divider { display: none; }
  .uu-box-right { padding-top: 0; }
  .uu-box-left, .uu-box-right { text-align: center; align-items: center; }
  .expertise-badge-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 600px;
    padding: 100px 0 5rem;
  }
  .hero-content { padding-top: 6rem; }
  .portal-headline { font-size: 3.5rem; }
  .portal-headline--sm { font-size: 2.25rem; }
  .portal-trustline { font-size: 1.2rem; margin-bottom: 4rem; }
  .security-pill { font-size: 0.85rem; padding: 0.65rem 1.3rem; margin-bottom: 3.5rem; }
  .portal-btns-wrapper {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    padding: 0 1rem;
  }
  .btn-portal-main,
  .btn-portal-secondary {
    width: 90%;
    max-width: 440px;
    height: 68px;
    font-size: 1.15rem;
    padding: 0 2rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .benefit-card { padding: 2.5rem 1.5rem; }

  .nk-section { padding: 5rem 0; }
  .nk-heading { font-size: 2rem; }
  .nk-advantages-grid { grid-template-columns: 1fr; }
  .nk-steps-row { grid-template-columns: 1fr; gap: 2rem; }
  .nk-cta-group { flex-direction: column; align-items: center; }
  .btn-nk-call, .btn-nk-callback { width: 100%; justify-content: center; }
  .hero--compact { min-height: 280px; padding: 120px 0 3rem; }

  .nk-minimal-process { margin: 2rem auto; gap: 1rem; }
  .nk-process-item { gap: 1rem; }
  .nk-process-dot { margin-top: 0.3rem; }
  .nk-process-item p { font-size: 1rem; }

  .legal-page-content h1 { font-size: 2.25rem; }
  .legal-page-content h2 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  .location-info,
  .top-left .separator {
    display: none !important;
  }
  .top-bar-content {
    justify-content: space-between !important;
    width: 100%;
    padding: 0 1rem;
  }
  .top-left, .top-right {
    display: flex;
    align-items: center;
  }
  .nav-arrow { display: none; }
  .carousel-container-v5 { padding: 0; }
  .cat-tile-v5 { min-width: 85vw; flex: 0 0 85vw; }
  .sortiment-v4 { padding: 6rem 0; }
  .filter-bar-v5 { gap: 1rem; }
}

@media (max-width: 480px) {
  .portal-headline { font-size: 2.5rem; }
  .portal-trustline { font-size: 1rem; }
  .target-audience-hint { font-size: 0.8rem; }
  html { font-size: 14px; }
}

/* ═══════════════════════════════════════════════════
   FORCED OVERRIDES
   Placed after all media queries so these win by
   source-order + !important over every prior rule.
═══════════════════════════════════════════════════ */

/* Fix 1 — Portal CTA buttons: compact size everywhere */
.btn-portal-main,
.btn-portal-secondary {
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  padding: 0.9rem 1.8rem !important;
  font-size: 1rem !important;
}
.btn-portal-main .btn-label,
.btn-portal-secondary .btn-label,
.btn-label {
  font-size: 1rem !important;
}

/* Fix 2 — Main nav height + logo */
.main-nav {
  height: 70px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.main-nav .logo img,
.logo-centered img {
  height: 54px !important;
}

/* Fix 3 — Neukunde sections centered, list items left */
.nk-section .nk-label,
.nk-section .nk-heading,
.nk-section .nk-subheading {
  text-align: center !important;
}
.nk-section {
  text-align: left !important;
}
.nk-section .nk-list-item {
  text-align: left !important;
}
.nk-container {
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Fix 4 — Neukunde hero title */
.portal-headline--sm {
  font-size: clamp(3rem, 6vw, 5rem) !important;
  font-weight: 800 !important;
}

/* Fix 5 — Legal page titles centered */
.legal-page-content h1 {
  text-align: center !important;
  width: 100% !important;
}
