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

:root {
  --bg: #f3efe8;
  --text: #1b1a1f;
  --muted: #5d5960;
  --gold: #f3c33a;
  --gold-deep: #d7a92a;
  --dark: #2d2c31;
  --dark-soft: #403f45;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top center, rgba(215, 171, 86, 0.22), transparent 28%),
    linear-gradient(180deg, #ebe3d7 0%, #f3eee7 34%, #f9f6f1 100%);
  color: var(--text);
  line-height: 1.56;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 12, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 1100;
}

body.menu-open::before {
  opacity: 1;
}

a {
  color: inherit;
}

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

main,
section,
.topbar,
.topbar-inner,
.subnav,
.subnav-inner,
.mobile-menu,
.hero,
.hero-inner,
.hero-copy,
.service-page,
.legal-page,
.help-page,
.pl-hero,
.tb-hero,
.kt-hero,
.imp-hero {
  width: 100%;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1300;
  background: rgba(226, 226, 226, 0.98);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-wordmark {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.brand-wordmark img {
  height: 24px;
  width: auto;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 20px;
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  height: 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  transform: none;
}

.menu-toggle,
.menu-close {
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 1;
}

.menu-toggle {
  position: relative;
  display: block;
  flex: 0 0 28px;
  width: 28px;
  height: 20px;
  font-size: 0;
  color: rgba(27, 26, 31, 0.92);
  background:
    linear-gradient(currentColor, currentColor) left 1px top 3px / 26px 2px no-repeat,
    linear-gradient(currentColor, currentColor) left 1px center / 26px 2px no-repeat,
    linear-gradient(currentColor, currentColor) left 10px bottom 4px / 17px 2px no-repeat;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), color 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle::before,
.menu-toggle::after {
  content: none;
}

.menu-toggle:hover {
  transform: translateY(-1px);
}

.menu-toggle:focus-visible {
  outline: none;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(215, 171, 86, 0.16);
}

.menu-toggle.menu-toggle--enhanced {
  background: transparent;
}

.menu-toggle.menu-toggle--enhanced::before {
  content: none;
}

.menu-toggle__bars {
  position: relative;
  display: block;
  width: 28px;
  height: 20px;
  z-index: 1;
}

.menu-toggle__line {
  position: absolute;
  display: block;
  left: 1px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.22s ease,
    width 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.25s ease,
    left 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-toggle__line--top,
.menu-toggle__line--middle,
.menu-toggle__line--bottom {
  width: 26px;
  height: 2px;
}

.menu-toggle__line--top {
  top: 3px;
  transform-origin: 52% 50%;
}

.menu-toggle__line--middle {
  top: 9px;
}

.menu-toggle__line--bottom {
  top: 15px;
  left: 10px;
  width: 17px;
  height: 2px;
  transform-origin: 48% 50%;
}

.menu-toggle.is-active {
  color: #ffcc00;
}

.menu-toggle.is-active .menu-toggle__line--top {
  left: 2px;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  transform-origin: center;
  transform: translateY(5.75px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__line--middle {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.is-active .menu-toggle__line--bottom {
  left: 2px;
  top: 15px;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  transform-origin: center;
  transform: translateY(-6.25px) rotate(-45deg);
}

.menu-close {
  font-size: 30px;
}

.subnav {
  background: rgba(51, 50, 57, 0.94);
}

.subnav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.subnav-item {
  position: relative;
}

.subnav-inner a,
.subnav-parent {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.subnav-inner > a + a::before,
.subnav-inner > .subnav-item + a::before,
.subnav-inner > a + .subnav-item::before,
.subnav-inner > .subnav-item + .subnav-item::before {
  content: "|";
  color: rgba(255, 255, 255, 0.26);
  margin-right: 18px;
}

.subnav-parent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.subnav-parent::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg) translateY(-2px);
}

.subnav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  min-width: 214px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(29, 28, 34, 0.96);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 20;
}

.subnav-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  white-space: nowrap;
}

.subnav-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.subnav-dropdown:hover .subnav-menu,
.subnav-dropdown:focus-within .subnav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu {
  position: fixed;
  top: 60px;
  right: 0;
  width: min(84vw, 340px);
  height: calc(100vh - 60px);
  background: rgba(24, 23, 28, 0.98);
  backdrop-filter: blur(18px);
  padding: 28px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-top-left-radius: 26px;
  transform: translateX(calc(100% + 24px)) scale(0.97);
  transform-origin: right center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.42s cubic-bezier(0.34, 1.18, 0.64, 1),
    opacity 0.28s ease,
    visibility 0s linear 0.42s;
  z-index: 1200;
  box-shadow: -22px 0 42px rgba(0, 0, 0, 0.28);
}

.mobile-menu.active {
  transform: translateX(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 0.42s cubic-bezier(0.34, 1.18, 0.64, 1),
    opacity 0.28s ease;
}

/* Staggered item entrance */
.mobile-menu > * {
  opacity: 0;
  transform: translateX(16px) translateY(5px);
}

.mobile-menu.active > *:nth-child(1) {
  opacity: 1;
  transform: none;
  transition: opacity 0.36s ease 0.18s, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
}

.mobile-menu.active > *:nth-child(2) {
  opacity: 1;
  transform: none;
  transition: opacity 0.36s ease 0.24s, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1) 0.24s;
}

.mobile-menu.active > *:nth-child(3) {
  opacity: 1;
  transform: none;
  transition: opacity 0.36s ease 0.30s, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1) 0.30s;
}

.mobile-menu.active > *:nth-child(4) {
  opacity: 1;
  transform: none;
  transition: opacity 0.36s ease 0.36s, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1) 0.36s;
}

.mobile-menu.active > *:nth-child(5) {
  opacity: 1;
  transform: none;
  transition: opacity 0.36s ease 0.42s, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1) 0.42s;
}

.mobile-menu.active > *:nth-child(6) {
  opacity: 1;
  transform: none;
  transition: opacity 0.36s ease 0.47s, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1) 0.47s;
}

.menu-close {
  align-self: flex-end;
  color: #fff;
}

.mobile-menu .menu-close {
  display: none;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-submenu {
  margin-top: -8px;
  margin-bottom: 4px;
  padding-left: 14px;
  display: grid;
}

.mobile-menu-group {
  display: grid;
  gap: 8px;
  padding: 4px 0 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-title {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.mobile-submenu a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    url("fotok/hero-desktop.png") center center / cover no-repeat,
    linear-gradient(180deg, #6d5543 0%, #c4a17f 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 11, 0.88) 0%, rgba(10, 10, 11, 0.76) 28%, rgba(10, 10, 11, 0.26) 56%, rgba(10, 10, 11, 0) 76%),
    linear-gradient(180deg, rgba(255, 222, 170, 0.2) 0%, rgba(255, 222, 170, 0) 28%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  min-height: 442px;
  padding: 32px 24px 24px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 314px;
  color: #fff;
}

.hero-kicker {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: clamp(40px, 4.6vw, 54px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 13px;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.hero-title {
  display: grid;
  width: 100%;
  max-width: 100%;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(10px);
  filter: blur(12px);
  will-change: transform, opacity, filter;
  animation: heroTitleReveal 1.45s cubic-bezier(0.16, 0.84, 0.22, 1) forwards;
}

.hero-line-2 {
  animation-delay: 0.24s;
}

.hero-line-3 {
  animation-delay: 0.48s;
}

@keyframes heroTitleReveal {
  0% {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(12px);
  }

  62% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .menu-toggle,
  .menu-toggle__line,
  .mobile-menu,
  .mobile-menu > * {
    transition: none;
    animation: none;
  }

  .mobile-menu > * {
    opacity: 1;
    transform: none;
  }

  .hero-line,
  .anfrage-line {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .footer-logo-brand,
  .footer-tagline-brand {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}

.hero-checks {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.price-card {
  width: 236px;
  max-width: 100%;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.price-card-link {
  display: inline-block;
  text-decoration: none;
}

.price-card-link:hover .price-card {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.price-card-top {
  background: linear-gradient(180deg, #ffd84f 0%, #f1be2d 100%);
  color: #171419;
  padding: 12px 16px 10px;
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.price-prefix {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.price-card-top strong {
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #171419;
}

.price-card-bottom {
  background: rgba(53, 52, 58, 0.94);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px 10px;
}

.cta-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 236px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  background: rgba(53, 52, 58, 0.94);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 620;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(23, 23, 29, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cta-call-icon {
  display: none;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  filter: brightness(0) invert(1);
  opacity: 0.98;
  transform: translateY(1px);
}

.cta-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(23, 23, 29, 0.26);
}

.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  margin-left: 0;
  width: 236px;
  color: #f5f1e9;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  margin-right: auto;
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.benefits {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 247, 243, 0.96) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.benefits-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 24px 26px;
}

.benefits-kicker {
  margin: 0 0 18px;
  color: rgba(17, 18, 20, 0.54);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 650;
}

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

.benefit-item {
  min-width: 0;
  padding: 0 18px;
}

.benefit-item + .benefit-item {
  border-left: 1px solid rgba(17, 18, 20, 0.08);
}

.benefit-mark {
  display: inline-block;
  margin: 0 0 10px;
  color: rgba(176, 141, 47, 0.88);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.benefit-item h3 {
  margin: 0 0 8px;
  color: #111214;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 620;
}

.benefit-item p {
  margin: 0;
  color: rgba(17, 18, 20, 0.72);
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 470;
}

.home-services {
  padding: 24px 24px 20px;
  background:
    linear-gradient(180deg, rgba(252, 250, 246, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.home-services-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 34px 36px;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.35fr);
  gap: 34px;
  align-items: start;
  border-radius: 30px;
  border: 1px solid rgba(17, 18, 20, 0.06);
  background:
    radial-gradient(circle at 12% 14%, rgba(212, 175, 55, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 246, 241, 0.98) 100%);
  box-shadow: 0 26px 50px rgba(17, 18, 20, 0.06);
}

.home-services-copy {
  max-width: none;
  margin: 0;
  padding: 6px 30px 6px 0;
  border-right: 1px solid rgba(17, 18, 20, 0.08);
  position: relative;
}

.home-services-copy::before {
  content: "Leistungen";
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(176, 141, 47, 0.9);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.home-services-copy h2 {
  max-width: 10ch;
  margin: 0 0 12px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 720;
  color: #111214;
}

.home-services-copy p {
  max-width: 30ch;
  margin: 0;
  color: rgba(17, 18, 20, 0.74);
  font-size: 17px;
  line-height: 1.54;
  font-weight: 450;
}

.home-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 2px 0;
}

.home-service-card {
  padding: 20px 4px 20px 0;
  min-width: 0;
}

.home-service-card + .home-service-card {
  border-top: 1px solid rgba(17, 18, 20, 0.08);
}

.home-service-card h3 {
  margin: 0 0 10px;
  color: #111214;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.022em;
  font-weight: 620;
}

.home-service-card p {
  margin: 0;
  max-width: 48ch;
  color: rgba(17, 18, 20, 0.7);
  font-size: 15px;
  line-height: 1.56;
  font-weight: 460;
}

.home-service-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: #111214;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-weight: 640;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(17, 18, 20, 0.14);
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.home-service-link::after {
  content: "\203A";
  margin-left: 6px;
  font-size: 16px;
  line-height: 1;
}

.home-service-link:hover {
  color: #8e6c12;
  border-color: rgba(142, 108, 18, 0.32);
}

.service-shortcuts {
  padding: 6px 24px 54px;
  background:
    linear-gradient(180deg, rgba(245, 241, 234, 0.98) 0%, rgba(244, 240, 233, 0.98) 100%);
}

.service-shortcuts-inner {
  max-width: 980px;
  margin: 0 auto;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 18, 20, 0.08);
}

.service-shortcuts-inner h2 {
  margin: 0 0 18px;
  color: rgba(17, 18, 20, 0.9);
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.service-shortcuts-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 24px;
}

.service-shortcuts-nav a {
  color: rgba(17, 18, 20, 0.82);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 560;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 18, 20, 0.1);
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.service-shortcuts-nav a:hover {
  color: #111214;
  border-color: rgba(17, 18, 20, 0.22);
}

.intro-strip {
  background:
    linear-gradient(180deg, rgba(248, 245, 239, 0.95), rgba(244, 240, 233, 0.96)),
    radial-gradient(circle at 78% 52%, rgba(242, 197, 61, 0.22), transparent 25%);
}

.intro-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 24px 20px;
  display: grid;
  grid-template-columns: 1fr;
}

.intro-copy {
  max-width: 100%;
  opacity: 0;
  transform: translateY(6px);
  will-change: transform, opacity;
}

.intro-copy.is-visible {
  animation: introCopyReveal 0.46s ease-out forwards;
}

.intro-head {
  max-width: 720px;
  margin: 0 0 14px;
  text-align: left;
}

.intro-copy h2 {
  max-width: 18ch;
  margin: 0 0 8px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 720;
}

.intro-copy p {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.42;
  margin-bottom: 0;
  font-weight: 450;
  color: rgba(17, 18, 20, 0.84);
}

.intro-lead {
  max-width: 32ch;
  font-size: clamp(21px, 2.15vw, 28px);
  line-height: 1.34;
  letter-spacing: -0.028em;
  font-weight: 630;
  color: #111214;
  margin: 0;
}

.intro-panel {
  max-width: 980px;
  margin: 0;
}

.intro-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  margin: 0;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(250, 250, 250, 0.94);
  border: 1px solid rgba(17, 18, 20, 0.05);
}

.intro-feature {
  max-width: none;
  min-width: 0;
  padding-right: 6px;
}

.intro-feature-icon {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 0 8px;
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(65%) sepia(44%) saturate(681%) hue-rotate(8deg) brightness(92%) contrast(88%);
}

.intro-feature h3 {
  margin: 0 0 8px;
  color: #111214;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 620;
}

.intro-feature p {
  max-width: 32ch;
  margin: 0;
  color: rgba(17, 18, 20, 0.74);
  font-size: 16px;
  line-height: 1.48;
  font-weight: 470;
}

.intro-cta-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
}

.cta-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 240px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, #25262b 0%, #16171b 100%);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 620;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 30px rgba(20, 21, 25, 0.14);
}

.cta-dark-text {
  color: #fff;
}

.cta-dark-text--single {
  width: 100%;
  text-align: center;
}

.anfrage {
  padding: 42px 24px 76px;
  background:
    linear-gradient(180deg, rgba(250, 248, 244, 0.98) 0%, rgba(245, 241, 234, 0.98) 100%);
}

.anfrage-head {
  max-width: 760px;
  margin: 0 auto 22px;
  text-align: center;
}

.anfrage-kicker {
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.anfrage-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 10px;
}

.anfrage-title {
  display: grid;
}

.anfrage-line {
  display: block;
  opacity: 0;
  transform: translateY(8px);
  filter: blur(10px);
  will-change: transform, opacity, filter;
}

.anfrage-title.is-visible .anfrage-line {
  animation: heroTitleReveal 1.25s cubic-bezier(0.16, 0.84, 0.22, 1) forwards;
}

.anfrage-title.is-visible .anfrage-line-2 {
  animation-delay: 0.22s;
}

.anfrage-info {
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
}

.anfrage-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 16px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

input:not([type="checkbox"]),
textarea,
select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: var(--text);
  font: inherit;
}

textarea {
  overflow: hidden;
  resize: none;
}

input:not([type="checkbox"]):focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(242, 197, 61, 0.12);
}

.upload-hint,
.checkbox-text,
.file-list {
  color: var(--muted);
}

.checkbox-text a {
  color: #0a66c2;
  text-decoration: none;
  font-weight: 500;
}

.checkbox-text a:hover {
  color: #084f99;
}

.upload-box {
  margin-top: 6px;
}

.upload-box input {
  display: none;
}

.upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #f8f8f8;
  text-align: center;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.upload-label:hover {
  border-color: #ffd600;
}

.upload-label-title {
  color: #171419;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 560;
  letter-spacing: -0.01em;
}

.upload-label-meta {
  color: rgba(23, 20, 25, 0.56);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 450;
}

.file-list {
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

.remove-files {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  background: #efebe4;
  cursor: pointer;
  font-weight: 600;
}

.form-help {
  margin: 0;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(248, 248, 246, 0.98) 0%, rgba(243, 241, 236, 0.98) 100%);
  border: 1px solid rgba(17, 18, 20, 0.06);
  box-shadow: 0 18px 34px rgba(18, 18, 24, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-help-copy {
  display: grid;
  gap: 6px;
}

.form-help-copy strong {
  color: var(--text);
  font-size: 17px;
  font-weight: 620;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.form-help-copy span {
  color: rgba(17, 18, 20, 0.68);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 430;
}

.form-help-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #16171b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: 0 10px 22px rgba(18, 18, 24, 0.06);
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.form-help-link:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(17, 18, 20, 0.12);
  box-shadow: 0 14px 24px rgba(18, 18, 24, 0.08);
}

.form-help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.form-help-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.form-help-links a:hover {
  transform: translateY(-1px);
}

.form-finale {
  margin-top: 20px;
  display: grid;
  gap: 18px;
  padding-top: 8px;
  opacity: 0;
  transform: translateY(10px);
  will-change: transform, opacity;
}

.form-finale.is-visible {
  animation: formFinaleReveal 0.8s ease-out 0.06s forwards;
}

.form-group-consent {
  margin-bottom: 0;
}

.form-group-consent .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
}

.checkbox {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  column-gap: 12px;
  cursor: pointer;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  flex: 0 0 18px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.checkbox input:hover {
  border-color: #999;
}

.checkbox input:checked {
  border-color: #111;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M3 7.2l2.1 2.2L11 3.8' fill='none' stroke='%23111' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

.checkbox input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.checkbox-text {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  color: rgba(17, 18, 20, 0.82);
  font-size: 16px;
  line-height: 1.68;
  font-weight: 470;
}

.checkbox-text a,
.form-legal-note a {
  color: #171419;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(23, 20, 25, 0.18);
  transition: border-color 180ms ease, color 180ms ease;
}

.checkbox-text a:hover,
.form-legal-note a:hover {
  color: #0f1013;
  border-color: rgba(23, 20, 25, 0.34);
}

.checkbox-text .privacy-link {
  color: #0a66c2;
  border-bottom-color: rgba(10, 102, 194, 0.24);
}

.checkbox-text .privacy-link:hover {
  color: #084f99;
  border-bottom-color: rgba(8, 79, 153, 0.36);
}

.form-legal-stack {
  display: grid;
  gap: 10px;
}

.form-legal-note {
  margin: 0;
  color: rgba(17, 18, 20, 0.62);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 450;
}

.form-submit-wrap {
  padding-top: 6px;
}

.submit-button {
  width: 100%;
  min-height: 62px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, #25262b 0%, #16171b 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 620;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-transform: none;
  box-shadow: 0 16px 30px rgba(20, 21, 25, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.submit-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 20px 34px rgba(20, 21, 25, 0.18);
}

.submit-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(34, 35, 40, 0.12), 0 16px 30px rgba(20, 21, 25, 0.14);
}

.submit-button:active {
  transform: translateY(0);
  filter: brightness(0.99);
}

.footer {
  display: grid;
  justify-items: center;
  padding: 58px 24px 36px;
  background: #15141a;
  text-align: center;
}

.footer > * {
  width: min(100%, 660px);
}

.footer img {
  margin: 0 auto 16px;
}

.footer-social-copy {
  max-width: 620px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 22px;
  height: 22px;
  margin: 0;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
}

.footer-brand,
.wf-footer-brand {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.footer-brand-rule,
.wf-footer-rule {
  width: min(300px, 100%);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.16) 18%, rgba(255, 255, 255, 0.24) 50%, rgba(255, 255, 255, 0.16) 82%, rgba(255, 255, 255, 0) 100%);
}

.footer-logo-brand,
.wf-footer-logo {
  display: block;
  opacity: 0;
  transform: translateX(-8px);
  will-change: transform, opacity;
}

.footer-logo-brand.is-visible,
.wf-footer-logo.is-visible {
  animation: footerBrandReveal 1.02s cubic-bezier(0.19, 1, 0.22, 1) 0.03s forwards;
}

.footer-logo-brand img,
.wf-footer-logo svg {
  width: 180px;
  height: auto;
  display: block;
  margin: 0;
}

.wf-footer-logo .fil0 {
  fill: #fff;
}

.footer-tagline-brand,
.wf-footer-tagline {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(9px, 0.95vw, 11px);
  line-height: 1.25;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  filter: blur(10px);
  will-change: transform, opacity, filter;
}

.footer-tagline-brand.is-visible,
.wf-footer-tagline.is-visible {
  animation: heroTitleReveal 1.18s cubic-bezier(0.18, 0.88, 0.2, 1) 0.31s forwards;
}

.footer-trust,
.wf-footer-trust {
  max-width: 420px;
  margin: 0 auto 34px;
  text-align: center;
}

.footer-trust p,
.wf-footer-trust p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(14px, 1.18vw, 16px);
  line-height: 1.56;
  font-weight: 520;
  letter-spacing: -0.012em;
}

.footer-cta,
.wf-footer-cta {
  max-width: 470px;
  margin: 0 auto 38px;
  text-align: center;
  padding: 28px 24px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-kicker,
.wf-footer-cta-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.32;
  font-weight: 620;
  letter-spacing: -0.018em;
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: filter 180ms ease, color 180ms ease, border-color 180ms ease;
}

.footer-cta-kicker:hover,
.wf-footer-cta-kicker:hover {
  color: rgba(255, 255, 255, 0.96);
  filter: brightness(1.04);
  border-color: rgba(255, 255, 255, 0.32);
}

.footer-cta-sub,
.wf-footer-cta-sub {
  margin: 8px 0 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 450;
}

.footer-phone,
.wf-footer-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(19px, 1.45vw, 22px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.018em;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.035);
  transition: color 180ms ease, text-shadow 180ms ease, opacity 180ms ease;
}

.footer-phone:hover,
.wf-footer-phone:hover {
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
}

.footer-phone span,
.wf-footer-phone span {
  display: block;
  line-height: 1.05;
  transform: none;
}

.footer-phone-icon,
.wf-footer-phone-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin: 0 -1px 0 0;
  opacity: 0.88;
  overflow: visible;
  color: currentColor;
  transform: translateY(-0.5px);
}

.footer-phone-icon path,
.wf-footer-phone-icon path {
  fill: currentColor;
}

.footer-phone::before,
.wf-footer-phone::before {
  content: none;
}

.footer-phone-note,
.wf-footer-phone-note {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 450;
}

.footer-social-intro,
.wf-footer-social-intro {
  margin: 0 auto 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 450;
}

.footer-socials {
  gap: 16px;
  margin-bottom: 32px;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.footer-social img {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0;
  opacity: 0.82;
  filter: brightness(0) invert(1);
}

.footer-social::before {
  content: none;
}

@media (hover: hover) {
  .footer-social:hover {
    transform: translateY(-2px) scale(1.02);
    color: rgba(255, 255, 255, 0.94);
    filter: brightness(1.04);
  }
}

.footer-nav,
.wf-footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-nav a,
.wf-footer-nav a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12.5px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, opacity 180ms ease, border-color 180ms ease;
}

.footer-nav a:hover,
.wf-footer-nav a:hover {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.18);
}

@keyframes footerBrandReveal {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes introCopyReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes formFinaleReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.help-page {
  padding: 34px 24px 88px;
  background:
    radial-gradient(circle at 84% 10%, rgba(186, 151, 74, 0.14), transparent 22rem),
    radial-gradient(circle at 12% 20%, rgba(17, 17, 17, 0.05), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #fbfaf6 26%, #ffffff 56%, #f7f6f2 100%);
}

.help-page-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.help-page-head {
  max-width: 760px;
  margin-bottom: 32px;
  padding: 0;
}

.help-page-kicker {
  color: #7d7156;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.help-page h1 {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 650;
  max-width: 760px;
  margin-bottom: 16px;
}

.help-page-intro {
  color: rgba(17, 17, 17, 0.76);
  font-size: 18px;
  line-height: 1.68;
  max-width: 760px;
}

.help-page-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.help-page-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.76);
  color: rgba(17, 17, 17, 0.78);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.help-card {
  position: relative;
  padding: 28px 26px 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 14px 38px rgba(17, 17, 17, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.help-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
  border-color: rgba(186, 151, 74, 0.22);
}

.help-card h2 {
  font-size: 28px;
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 620;
  margin-bottom: 14px;
}

.help-card p {
  color: rgba(17, 17, 17, 0.72);
  margin-bottom: 14px;
  line-height: 1.62;
}

.help-card p:last-child {
  margin-bottom: 0;
}

.help-card-step {
  padding-top: 56px;
}

.help-step-number {
  position: absolute;
  top: 24px;
  left: 26px;
  min-width: 24px;
  height: auto;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #7d7156;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.help-card-wide {
  grid-column: 1 / -1;
}

.help-card-eyebrow {
  color: #7d7156;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 650;
}

.help-card-support {
  background: linear-gradient(180deg, rgba(31, 30, 36, 0.98) 0%, rgba(20, 19, 24, 1) 100%);
  border-color: rgba(255, 255, 255, 0.06);
  min-height: 100%;
  box-shadow: 0 22px 54px rgba(17, 17, 17, 0.16);
}

.help-card-support h2,
.help-card-support p {
  color: rgba(255, 255, 255, 0.96);
}

.help-card-support .help-card-eyebrow {
  color: rgba(243, 195, 58, 0.96);
}

.help-card-back {
  background: rgba(255, 255, 255, 0.82);
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.help-card-back > div {
  flex: 0 0 auto;
}

.help-card-back-copy {
  max-width: 620px;
}

.help-card-back .help-contact {
  margin-top: 0;
}

.help-steps,
.help-list {
  display: grid;
  gap: 12px;
  padding-left: 22px;
  color: #111111;
  line-height: 1.62;
}

.help-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.help-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease, border-color 0.28s ease;
}

.help-contact a svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.help-contact a img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.help-contact a:hover {
  transform: translateY(-2px);
}

.help-contact-call {
  background: linear-gradient(180deg, #1d1d21 0%, #111111 100%);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
}

.help-contact-wa {
  background: rgba(255, 255, 255, 0.84);
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
}

.service-page {
  padding: 42px 24px 82px;
  background:
    radial-gradient(circle at 86% 10%, rgba(186, 151, 74, 0.14), transparent 20rem),
    radial-gradient(circle at 12% 14%, rgba(17, 17, 17, 0.05), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #fbfaf6 28%, #ffffff 58%, #f7f6f2 100%);
}

.service-page-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.service-page-head {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.service-page-kicker {
  color: #7d7156;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.service-page h1 {
  font-size: clamp(46px, 6.4vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 650;
  margin-bottom: 18px;
  text-wrap: balance;
}

.service-page-intro {
  max-width: 740px;
  margin: 0 auto;
  color: rgba(17, 17, 17, 0.76);
  font-size: 20px;
  line-height: 1.58;
  letter-spacing: -0.015em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  padding: 30px 30px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 22px 48px rgba(17, 17, 17, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(17, 17, 17, 0.09);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 56px rgba(17, 17, 17, 0.08);
}

.service-card h2 {
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 620;
  margin-bottom: 16px;
}

.service-card p {
  color: rgba(17, 17, 17, 0.7);
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.68;
}

.service-card p:last-child {
  margin-bottom: 0;
}

.service-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 17px;
  line-height: 1.66;
}

.service-card-wide {
  grid-column: 1 / -1;
  padding: 34px 34px 32px;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.service-action-primary,
.service-action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.service-action-primary {
  background: rgba(17, 17, 17, 0.96);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.08);
}

.service-action-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 8px 16px rgba(17, 17, 17, 0.04);
}

.service-action-primary:hover,
.service-action-secondary:hover {
  transform: translateY(-1px);
}

.service-action-primary:hover {
  background: #0f1013;
  box-shadow: 0 14px 24px rgba(17, 17, 17, 0.1);
}

.service-action-secondary:hover {
  border-color: rgba(17, 17, 17, 0.14);
  box-shadow: 0 14px 24px rgba(17, 17, 17, 0.07);
}

.compliance-note {
  padding: 0 24px 34px;
  background:
    linear-gradient(180deg, rgba(248, 245, 239, 0.96) 0%, rgba(244, 240, 233, 0.98) 100%);
}

.compliance-note-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.compliance-note-kicker {
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.compliance-note h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 12px;
}

.compliance-note p {
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.65;
}

.compliance-note p:last-of-type {
  margin-bottom: 18px;
}

.compliance-note-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.transport-legal-note p {
  color: var(--muted);
  margin-bottom: 10px;
}

.transport-legal-note {
  margin-top: 18px;
}

.transport-hero-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 244, 236, 0.96) 100%);
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}

.transport-hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
  font-size: 18px;
  color: var(--muted);
}

.transport-hero-price strong {
  font-size: clamp(40px, 6vw, 62px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.transport-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.transport-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(243, 195, 58, 0.12);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
}

.transport-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.transport-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.transport-card h2 {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 620;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.transport-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 14px;
}

.transport-card p {
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.65;
}

.transport-card p:last-child {
  margin-bottom: 0;
}

.transport-price {
  display: block;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.transport-price-sub {
  color: var(--muted);
  font-size: 14px;
}

.transport-note-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.transport-addons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.transport-conditions {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

.legal-page {
  padding: 72px 24px 96px;
}

.legal-page-inner {
  max-width: 920px;
  margin: 0 auto;
}

.legal-page-head {
  margin-bottom: 30px;
}

.legal-page-kicker {
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.legal-page h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin-bottom: 14px;
}

.legal-page-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.legal-stack {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: 26px 28px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  font-size: 24px;
  line-height: 1.18;
  font-weight: 620;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.legal-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--text);
}

.legal-note {
  border: 1px solid rgba(239, 191, 47, 0.24);
  background: linear-gradient(180deg, rgba(255, 248, 227, 0.96) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.legal-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0 0 14px;
}

.pl-page {
  padding: 54px 24px 88px;
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
}

.pl-shell {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.pl-hero {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.pl-offer-card,
.pl-addon,
.pl-process,
.pl-safety,
.pl-bottom-band {
  border-radius: 26px;
}

.pl-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 650;
  color: var(--gold-deep);
}

.pl-hero h1,
.pl-bottom-copy h2 {
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-weight: 620;
}

.pl-hero h1 {
  margin-top: 14px;
  font-size: clamp(44px, 6vw, 68px);
}

.pl-intro {
  max-width: 44ch;
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(27, 26, 31, 0.72);
  font-size: 18px;
  line-height: 1.68;
  font-weight: 430;
}

.pl-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 16, 22, 0.08);
}

.pl-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 540;
  color: rgba(27, 26, 31, 0.64);
}

.pl-trust-row img,
.pl-metric img,
.pl-addon-top img,
.pl-process-step img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.pl-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.pl-legal-note {
  max-width: 760px;
  margin: 24px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 16, 22, 0.07);
  color: rgba(27, 26, 31, 0.48);
  font-size: 13px;
  line-height: 1.72;
  text-align: center;
  letter-spacing: 0.005em;
}

.pl-offer-card {
  position: relative;
  padding: 28px 24px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 16, 22, 0.08);
  box-shadow: 0 18px 34px rgba(18, 18, 24, 0.08);
}

.pl-offer-card-featured {
  padding-top: 36px;
  transform: translateY(-10px);
  box-shadow: 0 26px 46px rgba(18, 18, 24, 0.12);
}

.pl-offer-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(243, 195, 58, 0.18);
  color: #8f6610;
  font-size: 11px;
  font-weight: 700;
}

.pl-offer-label {
  color: rgba(27, 26, 31, 0.72);
  font-size: 18px;
  font-weight: 500;
}

.pl-offer-card h2 {
  margin-top: 14px;
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 560;
}

.pl-offer-card > span {
  display: block;
  margin-top: 6px;
  color: rgba(27, 26, 31, 0.46);
  font-size: 13px;
  font-weight: 500;
}

.pl-offer-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
  padding-left: 18px;
  text-align: left;
  color: rgba(27, 26, 31, 0.72);
  font-weight: 430;
}

.pl-offer-card .pl-btn-primary,
.pl-offer-card .pl-btn-secondary {
  width: 100%;
}

.pl-offer-card .pl-btn-secondary {
  background: #1b1d23;
  color: #fff;
}

.pl-section {
  display: grid;
  gap: 20px;
}

.pl-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.pl-section-head h2 {
  margin-top: 10px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.035em;
  line-height: 1.06;
  font-weight: 600;
}

.pl-addon-top,
.pl-process-step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pl-addon-top span,
.pl-process-step span,
.pl-process-title {
  color: rgba(27, 26, 31, 0.7);
}

.pl-addon-top span {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  font-weight: 700;
}

.pl-btn-primary,
.pl-btn-secondary,
.pl-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 12px;
  padding: 0 20px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.pl-btn-primary {
  background: linear-gradient(180deg, #f3c33a 0%, #dca81a 100%);
  color: #111216;
  box-shadow: 0 18px 34px rgba(220, 168, 26, 0.28);
}

.pl-btn-secondary {
  background: #1c1f25;
  color: #fff;
  box-shadow: 0 16px 30px rgba(14, 15, 19, 0.12);
}

.pl-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.pl-btn-primary:hover,
.pl-btn-secondary:hover,
.pl-btn-ghost:hover {
  transform: translateY(-1px);
}

.pl-addon-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
}

.pl-addon {
  padding: 28px 28px 26px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 16, 22, 0.06);
  box-shadow: 0 20px 42px rgba(18, 18, 24, 0.04);
}

.pl-addon-featured {
  background:
    linear-gradient(180deg, rgba(255, 247, 223, 0.95), rgba(255, 255, 255, 0.78));
  border-color: rgba(215, 169, 42, 0.22);
}

.pl-addon h3 {
  margin-top: 18px;
  font-size: 28px;
  line-height: 1.03;
  letter-spacing: -0.03em;
  font-weight: 560;
}

.pl-addon p,
.pl-addon li,
.pl-safety-list li,
.pl-bottom-copy p {
  color: rgba(27, 26, 31, 0.72);
  line-height: 1.7;
  font-weight: 430;
}

.pl-addon p,
.pl-addon ul {
  margin-top: 14px;
}

.pl-addon ul,
.pl-safety-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.pl-process,
.pl-safety {
  padding: 18px 0;
  background: transparent;
  border-top: 1px solid rgba(15, 16, 22, 0.06);
  border-bottom: 1px solid rgba(15, 16, 22, 0.06);
  box-shadow: none;
}

.pl-process-title {
  text-align: center;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 520;
  color: rgba(27, 26, 31, 0.78);
}

.pl-process-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 16px;
  padding: 10px 0 2px;
}

.pl-process-step {
  justify-content: center;
  padding: 10px 18px 6px;
  text-align: center;
  flex-direction: column;
  position: relative;
}

.pl-process-step + .pl-process-step::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 1px;
  height: 52px;
  background: rgba(15, 16, 22, 0.06);
}

.pl-process-step span {
  font-size: 15px;
  font-weight: 480;
  margin-top: 10px;
  color: rgba(27, 26, 31, 0.66);
}

.pl-process-step img {
  width: 36px;
  height: 36px;
  margin: 0 auto;
  opacity: 0.72;
}

.pl-safety-list {
  max-width: 420px;
  margin: 18px auto 0;
}

.pl-bottom-band {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px 32px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.pl-bottom-copy {
  text-align: center;
}

.pl-bottom-copy h2 {
  font-size: clamp(30px, 4vw, 40px);
}

.pl-bottom-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.tb-page {
  padding: 54px 24px 88px;
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
}

.tb-shell {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.tb-hero {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.tb-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 650;
  color: var(--gold-deep);
}

.tb-hero h1,
.tb-bottom-copy h2 {
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-weight: 620;
}

.tb-hero h1 {
  margin-top: 14px;
  font-size: clamp(42px, 6vw, 64px);
}

.tb-intro {
  max-width: 48ch;
  margin: 18px auto 0;
  color: rgba(27, 26, 31, 0.72);
  font-size: 18px;
  line-height: 1.68;
  font-weight: 430;
}

.tb-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 16, 22, 0.08);
}

.tb-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 540;
  color: rgba(27, 26, 31, 0.64);
}

.tb-trust-row img,
.tb-summary-card img,
.tb-card-top img,
.tb-process-step img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.tb-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tb-summary-card,
.tb-card {
  padding: 28px 24px 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 16, 22, 0.08);
  border-radius: 26px;
  box-shadow: 0 18px 34px rgba(18, 18, 24, 0.08);
}

.tb-summary-card h2,
.tb-card h2,
.tb-section-head h2,
.tb-bottom-copy h2 {
  letter-spacing: -0.03em;
}

.tb-summary-card h2 {
  margin-top: 18px;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 560;
}

.tb-summary-card p,
.tb-card p,
.tb-bottom-copy p {
  margin-top: 12px;
  color: rgba(27, 26, 31, 0.72);
  line-height: 1.7;
  font-weight: 430;
}

.tb-process {
  padding: 18px 0;
  background: transparent;
  border-top: 1px solid rgba(15, 16, 22, 0.06);
  border-bottom: 1px solid rgba(15, 16, 22, 0.06);
}

.tb-process-title {
  text-align: center;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 520;
  color: rgba(27, 26, 31, 0.78);
}

.tb-process-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 16px;
  padding: 10px 0 2px;
}

.tb-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 18px 6px;
  position: relative;
}

.tb-process-step + .tb-process-step::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 1px;
  height: 52px;
  background: rgba(15, 16, 22, 0.06);
}

.tb-process-step img {
  width: 36px;
  height: 36px;
  opacity: 0.72;
}

.tb-process-step span {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 480;
  color: rgba(27, 26, 31, 0.66);
}

.tb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tb-card-accent {
  background: linear-gradient(180deg, rgba(255, 247, 223, 0.95), rgba(255, 255, 255, 0.78));
  border-color: rgba(215, 169, 42, 0.22);
}

.tb-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tb-card-top span {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  font-weight: 700;
  color: rgba(27, 26, 31, 0.56);
}

.tb-bottom-band {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px 32px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.tb-bottom-copy {
  text-align: center;
}

.tb-bottom-copy h2 {
  font-size: clamp(30px, 4vw, 40px);
}

.tb-bottom-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.tb-btn-primary,
.tb-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 12px;
  padding: 0 20px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.tb-btn-primary {
  background: linear-gradient(180deg, #f3c33a 0%, #dca81a 100%);
  color: #111216;
  box-shadow: 0 18px 34px rgba(220, 168, 26, 0.28);
}

.tb-btn-secondary {
  background: #1c1f25;
  color: #fff;
  box-shadow: 0 16px 30px rgba(14, 15, 19, 0.12);
}

.tb-btn-primary:hover,
.tb-btn-secondary:hover {
  transform: translateY(-1px);
}

.kt-page {
  padding: 54px 24px 88px;
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
}

.kt-shell {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.kt-hero {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.kt-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 650;
  color: var(--gold-deep);
}

.kt-hero h1,
.kt-bottom-copy h2 {
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-weight: 620;
}

.kt-hero h1 {
  margin-top: 14px;
  font-size: clamp(42px, 6vw, 64px);
}

.kt-intro {
  max-width: 48ch;
  margin: 18px auto 0;
  color: rgba(27, 26, 31, 0.72);
  font-size: 18px;
  line-height: 1.68;
  font-weight: 430;
}

.kt-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 16, 22, 0.08);
}

.kt-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 540;
  color: rgba(27, 26, 31, 0.64);
}

.kt-trust-row img,
.kt-summary-card img,
.kt-card-top img,
.kt-process-step img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.kt-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.kt-summary-card,
.kt-card {
  padding: 28px 24px 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 16, 22, 0.08);
  border-radius: 26px;
  box-shadow: 0 18px 34px rgba(18, 18, 24, 0.08);
}

.kt-summary-card h2,
.kt-bottom-copy h2 {
  letter-spacing: -0.03em;
}

.kt-summary-card h2 {
  margin-top: 18px;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 560;
}

.kt-summary-card p,
.kt-card p,
.kt-card li,
.kt-bottom-copy p {
  margin-top: 12px;
  color: rgba(27, 26, 31, 0.72);
  line-height: 1.7;
  font-weight: 430;
}

.kt-process {
  padding: 18px 0;
  background: transparent;
  border-top: 1px solid rgba(15, 16, 22, 0.06);
  border-bottom: 1px solid rgba(15, 16, 22, 0.06);
}

.kt-process-title {
  text-align: center;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 520;
  color: rgba(27, 26, 31, 0.78);
}

.kt-process-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 16px;
  padding: 10px 0 2px;
}

.kt-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 18px 6px;
  position: relative;
}

.kt-process-step + .kt-process-step::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 1px;
  height: 52px;
  background: rgba(15, 16, 22, 0.06);
}

.kt-process-step img {
  width: 36px;
  height: 36px;
  opacity: 0.72;
}

.kt-process-step span {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 480;
  color: rgba(27, 26, 31, 0.66);
}

.kt-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.kt-card-accent {
  background: linear-gradient(180deg, rgba(255, 247, 223, 0.95), rgba(255, 255, 255, 0.78));
  border-color: rgba(215, 169, 42, 0.22);
}

.kt-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kt-card-top span {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  font-weight: 700;
  color: rgba(27, 26, 31, 0.56);
}

.kt-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin-top: 14px;
}

.kt-bottom-band {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px 32px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.kt-bottom-copy {
  text-align: center;
}

.kt-bottom-copy h2 {
  font-size: clamp(30px, 4vw, 40px);
}

.kt-bottom-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.kt-btn-primary,
.kt-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 12px;
  padding: 0 20px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.kt-btn-primary {
  background: linear-gradient(180deg, #f3c33a 0%, #dca81a 100%);
  color: #111216;
  box-shadow: 0 18px 34px rgba(220, 168, 26, 0.28);
}

.kt-btn-secondary {
  background: #1c1f25;
  color: #fff;
  box-shadow: 0 16px 30px rgba(14, 15, 19, 0.12);
}

.kt-btn-primary:hover,
.kt-btn-secondary:hover {
  transform: translateY(-1px);
}

.imp-page {
  padding: 68px 24px 56px;
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
}

body.imp-surface {
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.96) 0%, rgba(245, 246, 248, 0.92) 34%, rgba(236, 238, 241, 0.9) 100%),
    linear-gradient(180deg, #f6f7f9 0%, #eef1f4 100%);
}

.imp-hero {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.imp-kicker {
  color: rgba(27, 26, 31, 0.48);
  font-size: 13px;
  font-weight: 550;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.imp-hero h1 {
  margin-top: 14px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 620;
}

.imp-subtitle {
  margin-top: 14px;
  color: rgba(27, 26, 31, 0.58);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 430;
}

.imp-card-wrap {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 0 0;
}

.imp-card-bg {
  position: absolute;
  inset: 0;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.16)),
    url("fotok/hero-desktop.png") center / cover no-repeat;
  filter: blur(28px) saturate(0.78);
  opacity: 0.24;
  transform: scale(1.04);
}

.imp-card {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 40px 20px;
  border-radius: 30px;
  background: rgba(247, 247, 248, 0.84);
  border: 1px solid rgba(15, 16, 22, 0.06);
  box-shadow: 0 28px 64px rgba(18, 18, 24, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.imp-section {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(15, 16, 22, 0.08);
}

.imp-section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.imp-section h2 {
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 580;
  margin-bottom: 18px;
}

.imp-detail-list {
  display: grid;
  gap: 14px;
}

.imp-detail-list p {
  display: grid;
  grid-template-columns: minmax(120px, 150px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.imp-detail-list span {
  color: rgba(27, 26, 31, 0.46);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.imp-detail-list strong,
.imp-copy {
  color: rgba(27, 26, 31, 0.82);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 430;
}

.imp-detail-list a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(27, 26, 31, 0.14);
  transition: border-color 0.18s ease, color 0.18s ease;
}

.imp-detail-list a:hover {
  color: rgba(27, 26, 31, 1);
  border-color: rgba(27, 26, 31, 0.28);
}

.imp-footer {
  padding: 0 24px 44px;
  text-align: center;
}

.imp-footer p {
  color: rgba(27, 26, 31, 0.46);
  font-size: 13px;
  line-height: 1.5;
}


#top,
#services,
#preise,
#anfrage {
  scroll-margin-top: 120px;
}

@media (max-width: 980px) {
  .home-services-inner,
  .home-services-grid,
  .intro-inner,
  .service-grid,
  .transport-price-grid,
  .transport-addons-grid {
    grid-template-columns: 1fr;
  }

  .pl-card-grid,
  .pl-addon-grid,
  .pl-process-row,
  .kt-summary,
  .kt-grid,
  .kt-process-row,
  .tb-summary,
  .tb-grid,
  .tb-process-row {
    grid-template-columns: 1fr;
  }

  .pl-process-step::before,
  .kt-process-step::before,
  .tb-process-step::before {
    display: none;
  }

  .pl-process-row {
    gap: 12px;
    padding: 8px 0 0;
  }

  .kt-process-row {
    gap: 12px;
    padding: 8px 0 0;
  }

  .tb-process-row {
    gap: 12px;
    padding: 8px 0 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefit-item {
    padding-right: 0;
  }

  .intro-badge {
    max-width: 420px;
  }

  .service-card-wide {
    grid-column: auto;
  }

  .help-grid,
  .help-card-wide {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .help-card-back {
    display: block;
  }

  .help-card-back .help-contact {
    margin-top: 22px;
  }
}

@media (max-width: 720px) {
  .home-services,
  .service-shortcuts,
  .topbar-inner,
  .hero-inner,
  .anfrage,
  .intro-inner,
  .benefits-inner,
  .compliance-note {
    padding-left: 18px;
    padding-right: 18px;
  }

  .pl-page {
    padding: 34px 16px 72px;
  }

  .imp-page {
    padding: 42px 16px 40px;
  }

  .kt-page {
    padding: 34px 16px 72px;
  }

  .tb-page {
    padding: 34px 16px 72px;
  }

  .pl-shell {
    gap: 18px;
  }

  .imp-card {
    padding: 28px 22px 10px;
    border-radius: 24px;
  }

  .imp-card-wrap {
    padding-top: 18px;
  }

  .imp-card-bg {
    border-radius: 28px;
  }

  .kt-shell {
    gap: 18px;
  }

  .tb-shell {
    gap: 18px;
  }

  .pl-offer-card,
  .pl-addon,
  .pl-process,
  .pl-safety,
  .pl-bottom-band {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .kt-summary-card,
  .kt-card,
  .kt-process,
  .kt-bottom-band {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .tb-summary-card,
  .tb-card,
  .tb-process,
  .tb-bottom-band {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .pl-process,
  .pl-safety {
    padding-left: 0;
    padding-right: 0;
  }

  .kt-process {
    padding-left: 0;
    padding-right: 0;
  }

  .tb-process {
    padding-left: 0;
    padding-right: 0;
  }

  .pl-hero h1 {
    font-size: 40px;
  }

  .imp-hero h1 {
    font-size: 46px;
  }

  .imp-subtitle {
    font-size: 16px;
  }

  .kt-hero h1 {
    font-size: 40px;
  }

  .pl-intro {
    font-size: 16px;
  }

  .kt-intro {
    font-size: 16px;
  }

  .pl-offer-card h2,
  .pl-addon h3,
  .pl-bottom-copy h2 {
    font-size: 30px;
  }

  .kt-summary-card h2,
  .kt-bottom-copy h2 {
    font-size: 30px;
  }

  .tb-summary-card h2,
  .tb-bottom-copy h2 {
    font-size: 30px;
  }

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

  .imp-detail-list p {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .pl-bottom-actions {
    flex-direction: column;
  }

  .kt-bottom-actions {
    flex-direction: column;
  }

  .tb-bottom-actions {
    flex-direction: column;
  }

  .pl-btn-primary,
  .pl-btn-secondary,
  .pl-btn-ghost {
    width: 100%;
  }

  .kt-btn-primary,
  .kt-btn-secondary {
    width: 100%;
  }

  .tb-btn-primary,
  .tb-btn-secondary {
    width: 100%;
  }

  .brand-wordmark {
    display: inline-flex;
    align-items: center;
  }

  .brand-wordmark img {
    height: 24px;
  }

  .topbar-phone {
    font-size: 14px;
  }

  .subnav {
    position: relative;
    display: block;
    overflow: visible;
  }

  .subnav-inner {
    padding: 10px 12px;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    flex-wrap: nowrap;
    align-items: center;
    max-width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .subnav-inner::-webkit-scrollbar {
    display: none;
  }

  .subnav-inner a,
  .subnav-parent {
    font-size: 13px;
  }

  .subnav-inner > a + a::before,
  .subnav-inner > .subnav-item + a::before,
  .subnav-inner > a + .subnav-item::before,
  .subnav-inner > .subnav-item + .subnav-item::before {
    margin-right: 10px;
  }

  .subnav-dropdown {
    position: static;
  }

  .subnav-menu {
    display: none;
  }

  .subnav-dropdown.mobile-open .subnav-menu {
    display: grid;
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    min-width: 0;
    margin-top: 0;
    padding: 10px;
    background: rgba(29, 28, 34, 0.98);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
    border-radius: 18px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 30;
  }

  .subnav-dropdown.mobile-open .subnav-menu a {
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    border-radius: 12px;
  }

  .subnav-dropdown.mobile-open .subnav-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .subnav-dropdown.mobile-open .subnav-parent::after {
    transform: rotate(-135deg) translateY(-1px);
  }

  .hero {
    background:
      url("fotok/hero-mobile.png") center / cover no-repeat,
      linear-gradient(180deg, #6d5543 0%, #c4a17f 100%);
  }

  .hero-inner {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 22px;
    align-items: flex-start;
  }

  .hero-copy {
    max-width: min(296px, 100%);
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 0.96;
    letter-spacing: -0.035em;
  }

  .hero-checks {
    font-size: 14px;
  }

  .price-card,
  .cta-call,
  .cta-whatsapp {
    width: 100%;
    max-width: 236px;
  }

  .cta-call-icon {
    display: inline-block;
  }

  .cta-whatsapp {
    top: 12px;
  }

  .benefits-inner {
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .benefits-grid {
    gap: 16px;
  }

  .benefit-item {
    padding: 0;
  }

  .benefit-item + .benefit-item {
    border-left: none;
  }

  .benefit-mark {
    margin-bottom: 10px;
  }

  .benefit-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .benefit-item p {
    font-size: 16px;
    line-height: 1.52;
  }

  .home-services {
    padding-top: 22px;
    padding-bottom: 14px;
  }

  .home-services-inner {
    gap: 20px;
    padding: 24px 22px;
    border-radius: 24px;
  }

  .home-services-copy {
    margin-bottom: 4px;
    max-width: 700px;
    padding: 0 0 18px;
    border-right: none;
    border-bottom: 1px solid rgba(17, 18, 20, 0.08);
  }

  .home-services-copy h2 {
    max-width: 11ch;
    margin-bottom: 10px;
    font-size: clamp(32px, 10vw, 40px);
    line-height: 1;
  }

  .home-services-copy p {
    max-width: 34ch;
    font-size: 16px;
    line-height: 1.5;
  }

  .home-services-grid {
    gap: 0;
    padding: 0;
  }

  .home-service-card {
    padding: 16px 0;
    border-bottom: 1px solid rgba(17, 18, 20, 0.08);
  }

  .home-service-card + .home-service-card {
    border-top: none;
  }

  .home-service-card:last-child {
    border-bottom: none;
  }

  .home-service-card h3 {
    font-size: 20px;
  }

  .home-service-card p {
    max-width: none;
  }

  .home-service-link {
    margin-top: 10px;
    font-size: 15px;
  }

  .service-shortcuts {
    padding-bottom: 38px;
  }

  .service-shortcuts-inner {
    padding-top: 6px;
  }

  .service-shortcuts-nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .intro-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
    padding-top: 24px;
    padding-bottom: 26px;
  }

  .intro-head {
    max-width: 100%;
    margin-bottom: 12px;
    text-align: left;
  }

  .intro-copy h2 {
    max-width: 16ch;
    margin: 0 0 8px;
    font-size: clamp(32px, 8.6vw, 36px);
    line-height: 1.04;
  }

  .intro-lead {
    max-width: 22ch;
    font-size: 19px;
    line-height: 1.34;
    margin: 0;
  }

  .intro-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0;
    padding: 18px 16px;
  }

  .intro-feature {
    max-width: 100%;
  }

  .intro-feature-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
  }

  .intro-feature h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .intro-feature p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.48;
  }

  .intro-cta-wrap {
    justify-content: stretch;
    margin-top: 16px;
  }

  .anfrage-info {
    font-size: 15px;
  }

  .compliance-note-inner {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .compliance-note h2 {
    font-size: 25px;
  }

  .help-page {
    padding-top: 30px;
  }

  .help-page h1 {
    font-size: 34px;
    line-height: 1.02;
  }

  .help-page-intro {
    font-size: 17px;
  }

  .help-card {
    padding: 24px 20px 22px;
    border-radius: 20px;
  }

  .cta-dark,
  .submit-button {
    width: 100%;
  }

  .cta-dark {
    min-height: 58px;
    border-radius: 18px;
    padding: 0 20px;
    font-size: 19px;
    box-shadow: 0 14px 28px rgba(20, 21, 25, 0.14);
  }

  .form-help {
    align-items: stretch;
    flex-direction: column;
    padding: 20px 18px;
    gap: 16px;
  }

  .form-help-link,
  .form-help-links a {
    width: 100%;
    justify-content: center;
  }

  .form-help-copy strong {
    font-size: 16px;
  }

  .form-help-copy span {
    font-size: 14px;
  }

  .checkbox {
    gap: 12px;
  }

  .checkbox input {
    width: 21px;
    height: 21px;
  }

  .checkbox-text {
    font-size: 15px;
    line-height: 1.62;
  }

  .form-legal-note {
    font-size: 14px;
    line-height: 1.58;
  }

  .submit-button {
    min-height: 60px;
    font-size: 17px;
    letter-spacing: 0.06em;
    border-radius: 18px;
  }

  .compliance-note-link {
    width: 100%;
  }

  .service-action-primary,
  .service-action-secondary {
    width: 100%;
  }

  .help-contact a {
    width: 100%;
  }

  .anfrage-form {
    padding: 20px 16px;
  }

  .footer {
    padding-top: 48px;
    padding-bottom: 30px;
  }

  .footer-trust,
  .wf-footer-trust {
    max-width: 310px;
    margin-bottom: 24px;
  }

  .footer-trust p,
  .wf-footer-trust p {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-cta,
  .wf-footer-cta {
    max-width: 320px;
    margin-bottom: 28px;
    padding: 20px 18px 20px;
  }

  .footer-cta-kicker,
  .wf-footer-cta-kicker {
    font-size: 15.5px;
  }

  .footer-cta-sub,
  .wf-footer-cta-sub {
    font-size: 12.5px;
    margin: 6px 0 12px;
  }

  .footer-phone,
  .wf-footer-phone {
    font-size: 19px;
    line-height: 1.05;
  }

  .footer-phone::before,
  .wf-footer-phone::before {
    content: none;
  }

  .footer-phone-icon,
  .wf-footer-phone-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    margin-right: -1px;
    transform: translateY(-0.5px);
  }

  .footer-socials {
    gap: 14px;
    margin-bottom: 24px;
  }

  .footer-social {
    width: 42px;
    height: 42px;
  }

  .footer-social::before {
    content: none;
  }

  .footer-social img {
    width: 21px;
    height: 21px;
  }

  .footer-social-intro,
  .wf-footer-social-intro {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .footer-nav,
  .wf-footer-nav {
    gap: 8px 18px;
    padding-top: 18px;
  }

  .footer-nav a,
  .wf-footer-nav a {
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (max-width: 768px) {
  textarea {
    font-size: 14px;
    line-height: 1.4;
    min-height: 120px;
  }

  textarea::placeholder {
    font-size: 13px;
    line-height: 1.4;
  }
}

:root {
  color-scheme: dark;
  --bg: #ffffff;
  --surface: #fafafa;
  --surface-soft: #f8f8f8;
  --surface-muted: #f4f4f4;
  --text: #111111;
  --muted: #5b6168;
  --gold: #ffcc00;
  --gold-deep: #d4af37;
  --dark: #15161a;
  --dark-soft: #2c2d32;
  --white: #ffffff;
  --shadow: 0 16px 34px rgba(17, 18, 20, 0.08);
  --shadow-soft: 0 12px 28px rgba(17, 18, 20, 0.06);
}

html {
  background: #ffffff;
  color: var(--text);
}

body {
  background: #ffffff;
  color: #111111;
  font-size: 18px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
  color: var(--text);
}

h1 {
  font-size: 36px;
  line-height: 1.2;
}

h2 {
  font-size: 28px;
  line-height: 1.22;
}

h3 {
  font-size: 22px;
  line-height: 1.26;
}

p {
  margin-bottom: 16px;
}

.section,
.benefits,
.home-services,
.service-shortcuts,
.intro-strip,
.anfrage,
.help-page,
.service-page,
.legal-page,
.pl-page,
.tb-page,
.kt-page,
.imp-page,
.wf-page,
.compliance-note,
body.imp-surface {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.topbar {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(17, 18, 20, 0.06);
  backdrop-filter: blur(14px);
}

.subnav {
  background: rgba(24, 24, 28, 0.94);
}

.mobile-menu {
  background: #17181c;
}

.hero-kicker,
.benefit-mark,
.compliance-note-kicker,
.anfrage-kicker,
.help-page-kicker,
.help-card-eyebrow,
.service-page-kicker,
.legal-page-kicker,
.pl-kicker,
.tb-kicker,
.kt-kicker {
  color: var(--gold-deep);
}

.home-services,
.service-shortcuts {
  padding-top: 18px;
}

.benefits-inner {
  padding-top: 20px;
  padding-bottom: 22px;
}

.home-services-inner,
.intro-highlights,
.anfrage-form,
.form-help,
.upload-label,
.help-card,
.service-card,
.compliance-note-inner,
.transport-hero-card,
.transport-card,
.legal-card,
.pl-offer-card,
.pl-addon,
.tb-summary-card,
.tb-card,
.kt-summary-card,
.kt-card,
.imp-card {
  background: #fafafa;
  border: 1px solid rgba(17, 18, 20, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-services-inner {
  max-width: 980px;
  padding: 28px 30px;
  gap: 28px;
  border-radius: 24px;
}

.home-services-copy h2,
.intro-copy h2,
.anfrage-head h2,
.service-page h1,
.legal-page h1,
.help-page h1,
.pl-hero h1,
.tb-hero h1,
.kt-hero h1,
.imp-hero h1 {
  color: #111111;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.help-card.help-card-support {
  background: linear-gradient(180deg, rgba(31, 30, 36, 0.98) 0%, rgba(20, 19, 24, 1) 100%);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 54px rgba(17, 17, 17, 0.16);
}

.help-card.help-card-support h2,
.help-card.help-card-support p {
  color: rgba(255, 255, 255, 0.96);
}

.help-card.help-card-support .help-card-eyebrow {
  color: rgba(243, 195, 58, 0.96);
}

.service-shortcuts {
  padding-bottom: 42px;
}

.service-shortcuts-inner {
  max-width: 960px;
  padding-top: 14px;
}

.intro-inner {
  max-width: 1000px;
  padding-top: 14px;
  padding-bottom: 18px;
}

.intro-head {
  margin-bottom: 12px;
}

.intro-highlights {
  gap: 20px;
  padding: 22px 24px;
  border-radius: 16px;
}

.anfrage {
  padding-top: 36px;
  padding-bottom: 60px;
}

.anfrage-form {
  padding: 30px;
  border-radius: 24px;
}

.form-help {
  background: #f8f8f8;
  box-shadow: none;
}

.upload-label {
  background: #f8f8f8;
  box-shadow: none;
}

.button-primary,
.btn-primary,
.pl-btn-primary,
.tb-btn-primary,
.kt-btn-primary {
  background: linear-gradient(180deg, #ffd54d 0%, #e6b800 100%);
  color: #111111;
}

.btn-secondary,
.pl-btn-secondary,
.tb-btn-secondary,
.kt-btn-secondary {
  background: #111214;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.button-primary:hover,
.btn-primary:hover,
.pl-btn-primary:hover,
.pl-btn-secondary:hover,
.tb-btn-primary:hover,
.tb-btn-secondary:hover,
.kt-btn-primary:hover,
.kt-btn-secondary:hover {
  transform: translateY(-3px);
}

.icon,
.intro-feature-icon,
.transport-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

.icon-wrapper,
.intro-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 8px;
}

.pl-trust-row img,
.tb-trust-row img,
.kt-trust-row img,
.pl-addon-top img,
.tb-card-top img,
.kt-card-top img,
.pl-process-step img,
.tb-process-step img,
.kt-process-step img {
  width: 28px;
  height: 28px;
}

.benefit-item p,
.home-services-copy p,
.home-service-card p,
.intro-copy p,
.intro-feature p,
.anfrage-info,
.form-help-copy span,
.checkbox-text,
.form-legal-note,
.service-page-intro,
.service-card p,
.transport-card p,
.transport-card li,
.legal-page-intro,
.legal-card p,
.pl-intro,
.tb-intro,
.kt-intro,
.pl-addon p,
.pl-addon li,
.pl-bottom-copy p,
.tb-summary-card p,
.tb-card p,
.tb-bottom-copy p,
.kt-summary-card p,
.kt-card p,
.kt-card li,
.kt-bottom-copy p,
.imp-subtitle,
.imp-detail-list strong,
.imp-copy,
.imp-detail-list span {
  font-size: 18px;
  line-height: 1.6;
}

.benefit-item p,
.home-services-copy p,
.home-service-card p,
.intro-feature p,
.service-card p,
.transport-card p,
.legal-card p,
.pl-addon p,
.tb-summary-card p,
.tb-card p,
.kt-summary-card p,
.kt-card p,
.imp-copy,
.imp-detail-list strong {
  color: rgba(17, 18, 20, 0.74);
}

.pl-addon-featured,
.tb-card-accent,
.kt-card-accent,
.legal-note {
  background: linear-gradient(180deg, rgba(255, 204, 0, 0.1) 0%, #fafafa 100%);
  border-color: rgba(212, 175, 55, 0.2);
}

.footer-social img,
.footer-social {
  color: currentColor;
}

@media (max-width: 768px) {
  body > main#top {
    display: flex;
    flex-direction: column;
  }

  body > main#top > .hero {
    order: 1;
  }

  body > main#top > .anfrage {
    order: 2;
  }

  body > main#top > .benefits {
    order: 3;
  }

  body > main#top > .home-services {
    order: 4;
  }

  body > main#top > .intro-strip {
    order: 5;
  }

  body > main#top > .service-shortcuts {
    order: 6;
  }

  body {
    font-size: 18px;
  }

  .anfrage {
    display: grid;
    gap: 24px;
    padding-top: 48px;
    padding-bottom: 24px;
  }

  .anfrage-head {
    margin: 0 auto;
  }

  .service-page {
    padding: 28px 16px 58px;
  }

  .service-page-head {
    margin-bottom: 24px;
  }

  .service-page-intro {
    font-size: 18px;
    line-height: 1.62;
  }

  .service-card {
    padding: 26px 22px 24px;
    border-radius: 22px;
  }

  .service-card-wide {
    padding: 28px 22px 26px;
  }

  .service-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .service-action-primary,
  .service-action-secondary {
    width: 100%;
  }

  .grid,
  .help-grid,
  .service-grid,
  .transport-price-grid,
  .transport-addons-grid,
  .pl-card-grid,
  .pl-addon-grid,
  .pl-process-row,
  .kt-summary,
  .kt-grid,
  .kt-process-row,
  .tb-summary,
  .tb-grid,
  .tb-process-row,
  .intro-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-services-inner,
  .intro-highlights,
  .anfrage-form,
  .form-help,
  .upload-label,
  .help-card,
  .service-card,
  .compliance-note-inner,
  .transport-hero-card,
  .transport-card,
  .legal-card,
  .pl-offer-card,
  .pl-addon,
  .tb-summary-card,
  .tb-card,
  .kt-summary-card,
  .kt-card,
  .imp-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .intro-copy h2,
  .service-page h1,
  .legal-page h1,
  .help-page h1,
  .pl-hero h1,
  .tb-hero h1,
  .kt-hero h1 {
    font-size: 28px;
    line-height: 1.16;
  }

  .anfrage-head h2,
  .home-services-copy h2,
  .compliance-note h2,
  .imp-section h2,
  .service-shortcuts-inner h2 {
    font-size: 22px;
    line-height: 1.2;
  }

  .anfrage-head h2 {
    font-size: 25px;
  }

  .icon,
  .intro-feature-icon,
  .transport-icon,
  .pl-trust-row img,
  .tb-trust-row img,
  .kt-trust-row img,
  .pl-addon-top img,
  .tb-card-top img,
  .kt-card-top img,
  .pl-process-step img,
  .tb-process-step img,
  .kt-process-step img {
    width: 36px;
    height: 36px;
  }

  .benefit-item p,
  .home-services-copy p,
  .home-service-card p,
  .intro-copy p,
  .intro-feature p,
  .anfrage-info,
  .form-help-copy span,
  .checkbox-text,
  .form-legal-note,
  .service-page-intro,
  .service-card p,
  .transport-card p,
  .transport-card li,
  .legal-page-intro,
  .legal-card p,
  .pl-intro,
  .tb-intro,
  .kt-intro,
  .pl-addon p,
  .pl-addon li,
  .pl-bottom-copy p,
  .tb-summary-card p,
  .tb-card p,
  .tb-bottom-copy p,
  .kt-summary-card p,
  .kt-card p,
  .kt-card li,
  .kt-bottom-copy p,
  .imp-subtitle,
  .imp-detail-list strong,
  .imp-copy,
  .imp-detail-list span,
  label,
  input,
  textarea,
  select,
  button {
    font-size: 16px;
    line-height: 1.58;
  }

  textarea {
    min-height: 120px;
    overflow: hidden;
    resize: none;
  }

  textarea::placeholder {
    font-size: 15px;
    line-height: 1.45;
  }

  .footer-social {
    width: 44px;
    height: 44px;
  }

  .footer-social img {
    width: 22px;
    height: 22px;
  }

  .footer-nav a,
  .wf-footer-nav a,
  .service-shortcuts-nav a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .topbar-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar-right {
    gap: 10px;
  }

  .topbar-phone {
    font-size: 13px;
  }

  .subnav-inner {
    padding-left: 10px;
    padding-right: 10px;
    gap: 7px;
  }

  .hero-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: clamp(30px, 11vw, 38px);
    line-height: 0.98;
    letter-spacing: -0.035em;
  }

  .help-page {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 72px;
  }

  .help-page h1 {
    font-size: clamp(30px, 10.6vw, 34px);
    line-height: 1.03;
    letter-spacing: -0.04em;
  }

  .help-page-pills {
    gap: 8px;
  }

  .help-page-pills span {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .help-step-number {
    top: 20px;
    left: 20px;
  }

  .help-card-step {
    padding-top: 52px;
  }
}

/* ============================================================
   MOBIL MENÜ — bal oldali csúszás + ghost réteg + logo fejléc
   Csak @media (max-width: 768px) — desktop érintetlen marad
   ============================================================ */
@media (max-width: 768px) {

  /* 1. POZÍCIÓ + ANIMÁCIÓ
     Panel: expo-out spring nyitáskor, gyors ease-in záráskor.
     Opacity 0s delay-jel: nem lebeg, csak transform mozog. */
  .mobile-menu {
    right: auto;
    left: 0;
    top: 0;
    height: 100vh;
    transform: translateX(-100%);
    border-radius: 0;
    box-shadow: 4px 0 32px rgba(0, 0, 0, 0.48);
    will-change: transform;
    transition:
      transform   0.38s cubic-bezier(0.16, 1, 0.3, 1),
      opacity     0s   linear 0.38s,
      visibility  0s   linear 0.38s;
  }

  .mobile-menu.active {
    transform: translateX(0);
    transition:
      transform   0.38s cubic-bezier(0.16, 1, 0.3, 1),
      opacity     0s   linear,
      visibility  0s   linear;
  }

  /* ── PREMIUM STAGGER ─────────────────────────────────────────────────────
     Minden sor balról csúszik be + fade-in, szoros stagger (50ms/sor).
     Bezáráskor: azonnali reset (transition:none) — a panel takarja.       */
  .mobile-menu > * {
    opacity: 0;
    transform: translateX(-32px) scale(0.96);
  }

  /* nth-child sorrend a JS prepend után:
     1: .mobile-menu-header (logo)
     2: .menu-close         (display:none — skip)
     3: a So funktioniert's
     4: .mobile-menu-group  (Leistungen blokk)
     5: a Warum Ferdinand
     6: a Preisliste
     7: a Transportbedingungen                                              */

  .mobile-menu.active > *:nth-child(1) {
    opacity: 1; transform: none;
    transition: opacity 0.34s ease 0.06s,
                transform 0.52s cubic-bezier(0.16, 1, 0.3, 1) 0.06s;
  }
  .mobile-menu.active > *:nth-child(2) {
    opacity: 1; transform: none;
    transition: none;               /* menu-close rejtett, nincs animáció */
  }
  .mobile-menu.active > *:nth-child(3) {
    opacity: 1; transform: none;
    transition: opacity 0.34s ease 0.13s,
                transform 0.52s cubic-bezier(0.16, 1, 0.3, 1) 0.13s;
  }
  .mobile-menu.active > *:nth-child(4) {
    opacity: 1; transform: none;
    transition: opacity 0.34s ease 0.19s,
                transform 0.52s cubic-bezier(0.16, 1, 0.3, 1) 0.19s;
  }
  .mobile-menu.active > *:nth-child(5) {
    opacity: 1; transform: none;
    transition: opacity 0.34s ease 0.25s,
                transform 0.52s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
  }
  .mobile-menu.active > *:nth-child(6) {
    opacity: 1; transform: none;
    transition: opacity 0.34s ease 0.30s,
                transform 0.52s cubic-bezier(0.16, 1, 0.3, 1) 0.30s;
  }
  .mobile-menu.active > *:nth-child(7) {
    opacity: 1; transform: none;
    transition: opacity 0.34s ease 0.35s,
                transform 0.52s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
  }

  /* X gomb elrejtése */
  .mobile-menu .menu-close {
    display: none !important;
  }

  /* 2. GHOST RÉTEG — teljes sötét overlay, gyors fade */
  .mobile-menu-ghost {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    z-index: 1199;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: opacity;
    transition:
      opacity    0.22s ease,
      visibility 0s    linear 0.22s;
  }

  .mobile-menu-ghost.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.22s ease;
  }

  /* 3. FEJLÉC — logo pixel-pontosan a header logo fölé */
  .mobile-menu-header {
    display: flex;
    align-items: center;
    height: 60px;
    margin: -28px -24px 18px;
    padding: 18px 24px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: content-box;
  }

  .mobile-menu-logo {
    opacity: 0;
    transition: opacity 0.18s ease 0s;
  }

  .mobile-menu.active .mobile-menu-logo {
    opacity: 1;
    transition-delay: 0.18s;
  }

  .mobile-menu-logo img {
    height: 24px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
  }

}

