:root {

  --ad-primary:   #20282d;
  --ad-bg-dark:   #223035;
  --ad-grey-1:    #f5f9ff;
  --ad-grey-2:    #666666;
  --ad-grey-3:    #8b9aa4;
  --ad-grey-4:    #999999;
  --ad-line:      #e6e6e6;
  --ad-white:     #ffffff;

  --primary:      #1A9DD9;
  --primary-dark: #1486bb;

  --ff-main: 'Manrope', sans-serif;

  --trans: all 0.3s ease-out;

  --black:         #20282d;
  --white:         #ffffff;
  --font-head:     'Manrope', sans-serif;
  --primary-light: #1A9DD9;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; scrollbar-gutter: stable; }
body {
  font-family: var(--ff-main);
  font-size: 16px;
  color: var(--ad-primary);
  background: var(--ad-white);
  line-height: 1.6;
  overflow-x: clip;
}
a { text-decoration: none; color: inherit; outline: none; }
a:hover { color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: transparent; font-family: var(--ff-main); outline: none; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin-bottom: 15px; font-weight: 400; line-height: 1.6; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-main);
  font-weight: 800;
  color: var(--ad-primary);
  line-height: 1.12;
}
h1 { font-size: 80px; }
h2 { font-size: 50px; }
h3 { font-size: 30px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }

::selection { background: var(--ad-primary); color: var(--ad-white); }

.td-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-fluid { width: 100%; padding: 0; }
.fix { overflow: hidden; }
.p-relative { position: relative; }
.p-absolute { position: absolute; }
.bg-position { background-size: cover; background-position: center; background-repeat: no-repeat; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-end { justify-content: flex-end; }

#page-transition {
  position: fixed; inset: 0;
  background: var(--ad-primary);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#page-transition.active {
  opacity: 1; visibility: visible;
  pointer-events: all;
}
.transition-logo svg path { fill: var(--ad-white); }
.transition-logo svg path:nth-child(2) { fill: var(--primary); }

#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  width: 0%; background: var(--primary);
  z-index: 9998; transition: width 0.1s linear;
}

.td-arrow-angle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.td-arrow-angle path {
  transition: transform 0.38s cubic-bezier(0.37,0.08,0.02,0.93),
              opacity 0.18s ease-out;
}
.td-arrow-angle path:nth-of-type(1) {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}
.td-arrow-angle path:nth-of-type(2) {
  transform: translateX(-110%) translateY(110%);
  opacity: 0;
  transition-delay: 0s, 0s;
}
.td-left-right:hover .td-arrow-angle path:nth-of-type(1) {
  transform: translateX(110%) translateY(-110%);
  opacity: 0;
  transition-delay: 0s, 0s;
}
.td-left-right:hover .td-arrow-angle path:nth-of-type(2) {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}

.td-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--ad-primary);
  color: var(--ad-white);
  font-family: var(--ff-main);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: var(--trans);
}
.td-btn:hover { background: #2a343a; color: var(--ad-white); }
.td-btn-2 { background: var(--ad-white); color: var(--ad-primary); border: 1px solid var(--ad-line); }
.td-btn-2:hover { background: var(--ad-grey-1); color: var(--ad-primary); }
.td-btn-outline {
  background: transparent;
  color: var(--ad-primary);
  border: 1px solid var(--ad-line);
}
.td-btn-outline:hover { background: var(--ad-primary); color: var(--ad-white); }
.td-btn-white {
  background: var(--ad-white);
  color: var(--ad-primary);
}
.td-btn-white:hover { background: var(--ad-grey-1); color: var(--ad-primary); }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; font-family: var(--ff-main); font-weight: 600; font-size: 14px; line-height: 1; cursor: pointer; transition: var(--trans); }
.btn-primary { background: var(--primary); color: var(--ad-white); border: 1px solid transparent; }
.btn-primary:hover { background: var(--primary-dark); color: var(--ad-white); }
.btn-outline { background: transparent; color: var(--ad-primary); border: 1px solid var(--ad-primary); }
.btn-outline:hover { background: var(--ad-primary); color: var(--ad-white); }
.btn-ghost { background: transparent; color: var(--ad-white); border: 1px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--ad-white); }

.td-section-pre {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ad-grey-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.td-section-title {
  font-weight: 500;
  font-size: 64px;
  line-height: 1.1;
  color: var(--ad-primary);
}
@media (max-width: 1199px) { .td-section-title { font-size: 50px; } }
@media (max-width: 767px)  { .td-section-title { font-size: 40px; } .td-section-title br { display: none; } }
@media (max-width: 575px)  { .td-section-title { font-size: 32px; } }

.td-title-border {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.td-title-border::before {
  position: absolute;
  content: "";
  bottom: 4px;
  left: 0;
  right: 0;
  height: 18px;
  background: #d8d8d8;
  z-index: -1;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ad-grey-2);
  margin-bottom: 14px;
}
.section-tag::before { content: '//'; margin-right: 6px; color: var(--primary); }

.grad-text { color: var(--primary); }

nav#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
nav#main-nav.scrolled {
  background: var(--ad-white);
  box-shadow: 0 4px 10px rgba(3,4,28,0.08);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 74px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  transition: border-color 0.3s ease;
}
nav#main-nav.scrolled .nav-inner {
  border-bottom-color: var(--ad-line);
}

.nav-logo {
  flex-shrink: 0;
  cursor: pointer;
  margin-right: 48px;
}
.nav-logo svg {
  height: 38px;
  width: auto;
  display: block;
}
.nav-logo svg path { fill: var(--ad-white); transition: fill 0.3s; }
.nav-logo svg path:nth-child(2) { fill: var(--primary) !important; }
nav#main-nav.scrolled .nav-logo svg path { fill: var(--ad-primary); }
nav#main-nav.scrolled .nav-logo svg path:nth-child(2) { fill: var(--primary) !important; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 8px 18px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 18px; right: 18px;
  height: 1px;
  background: var(--ad-white);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ad-white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
nav#main-nav.scrolled .nav-links a { color: var(--ad-grey-2); }
nav#main-nav.scrolled .nav-links a::after { background: var(--ad-primary); }
nav#main-nav.scrolled .nav-links a:hover,
nav#main-nav.scrolled .nav-links a.active { color: var(--ad-primary); }

.nav-has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch; 
}
.nav-dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--ad-line);
  border-radius: 10px;
  padding: 6px 0;
  min-width: 210px;
  box-shadow: 0 8px 32px rgba(32,40,45,0.12);
  z-index: 1010;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.nav-has-dropdown:hover .nav-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ad-primary);
  white-space: nowrap;
  position: static; 
}
.nav-dropdown a::after { display: none; } 
.nav-dropdown a:hover { background: var(--ad-grey-1); color: var(--primary); }

nav#main-nav .nav-dropdown a,
nav#main-nav .nav-dropdown a.active,
nav#main-nav.scrolled .nav-dropdown a,
nav#main-nav.scrolled .nav-dropdown a.active { color: var(--ad-primary); }
nav#main-nav .nav-dropdown a:hover,
nav#main-nav.scrolled .nav-dropdown a:hover { color: var(--primary); background: var(--ad-grey-1); }

.nav-cta {
  margin-left: auto;
  padding: 11px 22px;
  background: var(--ad-white);
  color: var(--ad-primary);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--trans);
}
.nav-cta:hover { background: var(--ad-grey-1); color: var(--ad-primary); }
nav#main-nav.scrolled .nav-cta {
  background: var(--primary);
  color: var(--ad-white);
}
nav#main-nav.scrolled .nav-cta:hover { background: var(--primary-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  cursor: pointer;
  background: none; border: none;
  margin-left: 16px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--ad-white);
  transition: var(--trans);
}
.hamburger span:nth-child(1) { width: 28px; }
.hamburger span:nth-child(2) { width: 22px; }
.hamburger span:nth-child(3) { width: 16px; }
nav#main-nav.scrolled .hamburger span { background: var(--ad-primary); }
.hamburger:hover span { width: 28px !important; }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ad-primary);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.mobile-menu-logo {
  height: 38px;
  width: auto;
  opacity: 0.9;
  display: block;
  flex-shrink: 0;
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--ad-white);
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.12); }

.mobile-menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  gap: 0;
  overflow-y: auto;
}
.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  font-weight: 800;
  color: rgba(255,255,255,0.55);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, padding-left 0.2s;
  letter-spacing: -0.02em;
}
.mobile-menu-links a:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.mobile-menu-links a:hover, .mobile-menu-links a.active {
  color: var(--ad-white);
  padding-left: 8px;
}
.mobile-menu-links a .mm-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  width: 24px;
  flex-shrink: 0;
}

.mobile-menu-footer {
  padding: 24px 28px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.mobile-menu-footer a {
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--primary);
  color: var(--ad-white);
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s;
}
.mobile-menu-footer a:hover { background: var(--primary-dark); color: var(--ad-white); }

.mobile-menu-links .nav-cta { display: none; }

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-shell, .hero-frame { all: unset; display: contents; }
.hero-city-bg, .hero-city-overlay { display: none !important; }

.td-hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/background-images/background_munich_landscapes.webp') center center / cover no-repeat;
  filter: saturate(0.85) contrast(0.9);
}

.td-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(32,40,45,0.55) 0%, rgba(32,40,45,0.45) 40%, rgba(32,40,45,0.7) 80%, rgba(32,40,45,0.88) 100%),
    linear-gradient(90deg, rgba(32,40,45,0.4) 0%, rgba(32,40,45,0.1) 60%);
}

.td-hero-ticker {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 120px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 0;
}
.td-hero-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: heroTicker 28s linear infinite;
  padding-bottom: 24px;
}
.td-hero-ticker-item {
  font-size: clamp(80px, 12vw, 200px);
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  white-space: nowrap;
  padding: 0 40px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.td-hero-ticker-item.accent {
  color: rgba(26,157,217,0.15);
}
@keyframes heroTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.td-hero-bottom {
  position: relative;
  z-index: 2;
  padding: 48px 0 72px;
}
.td-hero-bottom .td-container {
  display: flex;
  align-items: flex-end;
  gap: 48px;
}
.td-hero-title-col { flex: 1; }
.td-hero-sub-col {
  flex-shrink: 0;
  max-width: 340px;
  padding-bottom: 8px;
}

.td-hero-achive-title {
  font-weight: 600;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.08;
  color: var(--ad-white);
  letter-spacing: -0.04em;
}
.td-hero-achive-title .td-title-border::before {
  background: rgba(255,255,255,0.15);
}

.td-hero-sub-col p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}
.td-hero-sub-col .td-btn {
  background: var(--ad-white);
  color: var(--ad-primary);
}
.td-hero-sub-col .td-btn:hover { background: var(--ad-grey-1); }

.hero-notif-pill { display: none; }

.hero-content { display: none !important; }

.trust-strip {
  background: var(--ad-grey-1);
  border-top: 1px solid var(--ad-line);
  border-bottom: 1px solid var(--ad-line);
  overflow: hidden;
  padding: 0;
}
.trust-strip-hero { background: var(--ad-primary); border-color: rgba(255,255,255,0.1); }
.trust-ticker-track {
  display: flex;
  width: max-content;
  animation: trustTicker 22s linear infinite;
  padding: 16px 0;
}
.trust-ticker-group {
  display: flex;
  align-items: center;
  gap: 0;
}
.trust-ticker-item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 24px;
  white-space: nowrap;
}
.trust-ticker-item-outline {
  color: rgba(255,255,255,0.6);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-ticker-item-solid {
  color: rgba(255,255,255,0.9);
  border-right: 1px solid rgba(255,255,255,0.12);
}
@keyframes trustTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

.td-service-area {
  position: relative;
  overflow: hidden;
}

.td-svc-bgs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.td-svc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.td-svc-bg.active { opacity: 1; }

.td-svc-cols {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
}
.td-svc-col {
  flex: 1;
  min-width: 220px;
  padding: 40px 32px 56px;
  border-right: 1px solid var(--ad-line);
  cursor: pointer;
  transition: background 0.4s, color 0.3s;
  position: relative;
  overflow: hidden;
}
.td-svc-col:last-child { border-right: none; }
.td-svc-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(32,40,45,0.82);
  opacity: 0;
  transition: opacity 0.4s;
}
.td-svc-col:hover::before { opacity: 1; }
.td-svc-col.active::before { opacity: 1; }
/* Nicht-aktive Spalten: heller Overlay + gedimmte Farben */
#svc-cols.has-hover .td-svc-col:not(.active)::before {
  background: rgba(255,255,255,0.18);
  opacity: 1;
}
#svc-cols.has-hover .td-svc-col:not(.active) .td-svc-num   { color: rgba(255,255,255,0.5); }
#svc-cols.has-hover .td-svc-col:not(.active) .td-svc-title { color: rgba(255,255,255,0.6); }
#svc-cols.has-hover .td-svc-col:not(.active) .td-svc-icon  { color: rgba(255,255,255,0.55); opacity: 1; }

.td-svc-col-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.td-svc-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ad-grey-3);
  margin-bottom: 48px;
  transition: color 0.3s;
}
.td-svc-col:hover .td-svc-num,
.td-svc-col.active .td-svc-num { color: rgba(255,255,255,0.5); }

.td-svc-icon {
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1;
  color: var(--ad-primary);
  transition: opacity 0.3s, color 0.3s;
}
.td-svc-col:hover .td-svc-icon,
.td-svc-col.active .td-svc-icon { color: #fff; opacity: 1; }

.td-svc-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ad-primary);
  line-height: 1.2;
  margin-bottom: 0;
  transition: color 0.3s;
}
.td-svc-col:hover .td-svc-title,
.td-svc-col.active .td-svc-title { color: var(--ad-white); }

.td-svc-content-inner {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s 0.1s, transform 0.35s 0.1s;
  margin-top: 16px;
}
.td-svc-col:hover .td-svc-content-inner,
.td-svc-col.active .td-svc-content-inner {
  opacity: 1;
  transform: translateY(0);
}
.td-svc-para {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}
.td-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ad-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: gap 0.2s;
}
.td-svc-link:hover { gap: 14px; }

.td-services-head {
  padding: 80px 0 0;
  border-top: 1px solid var(--ad-line);
  border-bottom: 1px solid var(--ad-line);
  position: relative;
  z-index: 1;
}
.td-services-head .td-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 40px;
}

.td-about-area {
  padding: 120px 0;
  background: var(--ad-white);
}
.td-about-row {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.td-about-panels { flex: 0 0 56%; }
.td-about-info   { flex: 1; padding-top: 8px; }

.td-panel-list { display: flex; flex-direction: column; border-top: 1px solid var(--ad-line); }
.td-panel-item { border-bottom: 1px solid var(--ad-line); }
.td-panel-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
}
.td-panel-trigger-left { display: flex; align-items: center; gap: 20px; }
.td-panel-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ad-grey-3);
  width: 28px;
}
.td-panel-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--ad-primary);
  transition: color 0.2s;
}
.td-panel-trigger:hover .td-panel-name { color: var(--primary); }
.td-panel-arrow {
  font-size: 18px;
  color: var(--ad-grey-3);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.td-panel-item.active .td-panel-arrow { transform: rotate(45deg); }
.td-panel-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  padding: 0 48px;
}
.td-panel-item.active .td-panel-body { max-height: 300px; }
.td-panel-body-inner { padding-bottom: 28px; }
.td-panel-body p { font-size: 15px; color: var(--ad-grey-2); line-height: 1.7; margin-bottom: 16px; }
.td-panel-body a.td-btn { font-size: 13px; padding: 12px 20px; }

.td-about-info .td-section-pre { margin-bottom: 12px; }
.td-about-info .td-section-title { margin-bottom: 24px; font-size: 52px; }
.td-about-info p { font-size: 16px; color: var(--ad-grey-2); line-height: 1.7; }

.td-compare-area {
  padding: 100px 0;
  background: var(--ad-primary);
}
.td-compare-head { text-align: center; margin-bottom: 56px; }
.td-compare-head .td-section-pre { color: rgba(255,255,255,0.5); }
.td-compare-head .td-section-title { color: var(--ad-white); font-size: 52px; }
.td-compare-head .td-section-title s { color: rgba(255,255,255,0.3); text-decoration-color: var(--primary); }

.td-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
}
.td-compare-card { padding: 48px 40px; }
.td-compare-card-bad {
  border-right: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}
.td-compare-card-good { background: rgba(255,255,255,0.06); }
.td-compare-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ad-white);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.td-compare-list { display: flex; flex-direction: column; gap: 14px; }
.td-compare-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.td-compare-x { color: rgba(255,255,255,0.3); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.td-compare-check { color: var(--primary); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.td-compare-item.good { color: rgba(255,255,255,0.9); }

.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid rgba(255,255,255,0.1); }
.compare-card { padding: 48px 40px; }
.compare-card-bad { border-right: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.03); }
.compare-card-good { background: rgba(255,255,255,0.06); }
.compare-title { font-size: 18px; font-weight: 700; color: var(--ad-white); margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.compare-list { display: flex; flex-direction: column; gap: 14px; }
.compare-item { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.compare-x { color: rgba(255,255,255,0.3); font-size: 16px; flex-shrink: 0; }
.compare-check { color: var(--primary); font-size: 16px; flex-shrink: 0; }

.td-process-area {
  padding: 120px 0;
  background: var(--ad-grey-1);
}
.td-process-head {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 72px;
}
.td-process-intro { flex: 1; }
.td-process-intro .td-section-title { font-size: 52px; margin-bottom: 20px; }
.td-process-intro p { font-size: 16px; color: var(--ad-grey-2); line-height: 1.7; margin: 0; }
.td-process-side {
  flex-shrink: 0;
  width: 320px;
  border-left: 1px solid var(--ad-line);
  padding-left: 48px;
}
.td-process-side-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.td-process-side p { font-size: 14px; color: var(--ad-grey-2); line-height: 1.7; margin-bottom: 20px; }
.td-process-side-points { display: flex; flex-direction: column; gap: 8px; }
.td-process-side-points span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ad-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.td-process-side-points span::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--primary);
  flex-shrink: 0;
}

.td-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ad-line);
}
.td-process-card {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--ad-line);
  padding-right: 32px;
}
.td-process-card:first-child { padding-left: 0; }
.td-process-card:last-child { border-right: none; }
.td-pcn-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ad-grey-3);
  margin-bottom: 32px;
}
.td-process-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ad-primary);
}
.td-process-card p { font-size: 14px; color: var(--ad-grey-2); line-height: 1.7; margin: 0; }

.process-section { padding: 120px 0; background: var(--ad-grey-1); }
.process-head { display: flex; gap: 64px; align-items: flex-start; margin-bottom: 72px; }
.process-intro { flex: 1; }
.process-intro .td-section-title { font-size: 52px; margin-bottom: 20px; }
.process-intro-copy { font-size: 16px; color: var(--ad-grey-2); line-height: 1.7; margin: 0; }
.process-side-card { flex-shrink: 0; width: 320px; border-left: 1px solid var(--ad-line); padding-left: 48px; }
.process-side-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.process-side-points { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.process-side-points span { font-size: 13px; font-weight: 600; color: var(--ad-primary); display: flex; align-items: center; gap: 8px; }
.process-side-points span::before { content: ''; width: 18px; height: 1px; background: var(--primary); flex-shrink: 0; }
.process-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--ad-line); }
.process-card-new { padding: 40px 36px; border-right: 1px solid var(--ad-line); }
.process-card-new:first-child { padding-left: 0; }
.process-card-new:last-child { border-right: none; padding-right: 0; }
.process-card-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.pcn-num { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--ad-grey-3); }
.process-card-icon { width: 32px; height: 32px; border: 1px solid var(--ad-line); }
.process-card-new h4 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--ad-primary); }
.process-card-new p { font-size: 14px; color: var(--ad-grey-2); line-height: 1.7; margin: 0; }

.home-pricing-section,
.td-pricing-area {
  padding: 100px 0;
  background: var(--ad-primary);
}
.home-pricing-section .wrap,
.td-pricing-area .td-container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.td-pricing-head { text-align: center; margin-bottom: 56px; }
.td-pricing-head .td-section-pre { color: rgba(255,255,255,0.5); }
.td-pricing-head .td-section-title { color: var(--ad-white); }
.td-pricing-head p { font-size: 16px; color: rgba(255,255,255,0.6); margin: 12px auto 0; max-width: 480px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 56px;
}
.pricing-card {
  padding: 48px 36px;
  border-right: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  position: relative;
}
.pricing-card:last-child { border-right: none; }
.pricing-card.featured {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(26,157,217,0.3);
}
.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(26,157,217,0.3);
  padding: 4px 12px;
  margin-bottom: 20px;
}
.pricing-name {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.pricing-price {
  font-size: clamp(36px,5vw,52px);
  font-weight: 800;
  color: var(--ad-white);
  line-height: 1;
  margin-bottom: 20px;
}
.pricing-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 28px;
}
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pricing-feature {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-feature::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--primary);
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-card .btn-outline { border-color: rgba(255,255,255,0.2); color: var(--ad-white); }
.pricing-card .btn-outline:hover { background: rgba(255,255,255,0.08); }
.pricing-card .btn-primary { background: var(--primary); }
.pricing-card .btn-primary:hover { background: var(--primary-dark); }

.td-faq-area,
section:has(.faq-list) {
  padding: 100px 0;
  background: var(--ad-white);
}
.td-faq-head { text-align: center; margin-bottom: 56px; }
.faq-list { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--ad-line); }
.faq-item { border-bottom: 1px solid var(--ad-line); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-family: var(--ff-main);
  font-size: 16px;
  font-weight: 700;
  color: var(--ad-primary);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--primary); }
.faq-icon { flex-shrink: 0; font-size: 20px; color: var(--ad-grey-3); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--primary); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  font-size: 15px;
  color: var(--ad-grey-2);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding-bottom: 24px; }

.cta-section { padding: 0 0 100px; background: var(--ad-white); }
.cta-card {
  border-top: 1px solid var(--ad-line);
  border-bottom: 1px solid var(--ad-line);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.cta-card h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--ad-primary);
  margin: 0;
}
.cta-card h2 .grad-text { color: var(--primary); }
.cta-card > p {
  font-size: 16px;
  color: var(--ad-grey-2);
  max-width: 480px;
  margin: 0;
}
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-actions .btn-primary {
  background: var(--ad-primary);
  color: var(--ad-white);
  border-color: transparent;
}
.cta-actions .btn-ghost {
  background: transparent;
  color: var(--ad-primary);
  border-color: var(--ad-line);
}
.cta-actions .btn-ghost:hover { background: var(--ad-primary); color: var(--ad-white); }
.cta-trust { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 8px; }
.cta-trust-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--ad-grey-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-trust-item::before { content: '—'; color: var(--primary); }

footer {
  background: var(--ad-grey-1);
  border-top: 1px solid var(--ad-line);
}
.footer-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
footer .wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--ad-line);
  padding: 72px 0 56px;
}
.footer-brand { padding-right: 64px; border-right: 1px solid var(--ad-line); }
.footer-brand svg { height: 32px; width: auto; }
.footer-brand svg path { fill: var(--ad-primary) !important; }
.footer-brand svg path:nth-child(2) { fill: var(--primary) !important; }
.footer-brand p {
  font-size: 14px;
  color: var(--ad-grey-2);
  line-height: 1.6;
  margin-top: 20px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 12px; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--ad-line);
  font-size: 12px;
  font-weight: 700;
  color: var(--ad-grey-2);
  transition: var(--trans);
  border-radius: 6px;
}
.social-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-icon .material-icons { font-size: 18px; }
.social-icon:hover { border-color: var(--ad-primary); color: var(--ad-primary); background: var(--ad-white); }

.footer-col { padding: 0 32px; border-right: 1px solid var(--ad-line); padding-top: 0; }
.footer-col:last-child { border-right: none; }
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ad-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  padding-top: 4px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--ad-grey-2);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ad-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: var(--ad-grey-3); margin: 0; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--ad-grey-3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--ad-primary); }

.usp-section { padding: 100px 0; background: var(--ad-white); }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ad-line);
  border-left: 1px solid var(--ad-line);
}
.usp-card {
  padding: 40px 32px;
  border-right: 1px solid var(--ad-line);
  border-bottom: 1px solid var(--ad-line);
  transition: background 0.25s;
}
.usp-card:hover { background: var(--ad-grey-1); }
.usp-card .icon-box {
  font-size: 22px;
  margin-bottom: 20px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ad-line);
  background: var(--ad-white);
}
.usp-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.usp-card p { font-size: 14px; color: var(--ad-grey-2); line-height: 1.6; margin: 0; }

.home-services-section { padding: 100px 0; background: var(--ad-white); }
.home-services-section .wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.home-services-section h2 { font-size: 48px; font-weight: 800; line-height: 1.12; color: var(--ad-primary); }
.home-services-section h2 .grad-text { color: var(--primary); }
.home-services-section > .wrap > .text-center > p { font-size: 15px; color: var(--ad-grey-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ad-line);
  border-left: 1px solid var(--ad-line);
  margin-bottom: 0;
}
.service-card {
  padding: 40px 32px;
  border-right: 1px solid var(--ad-line);
  border-bottom: 1px solid var(--ad-line);
  position: relative;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { background: var(--ad-grey-1); }
.service-card .icon-box {
  font-size: 22px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ad-line);
  background: var(--ad-white);
  margin-bottom: 20px;
  transition: background 0.2s;
}
.service-card:hover .icon-box { background: var(--ad-primary); }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--ad-primary); }
.service-card p { font-size: 14px; color: var(--ad-grey-2); line-height: 1.6; margin: 0; flex: 1; }
.service-card-arrow {
  display: inline-block;
  font-size: 16px;
  color: var(--ad-grey-3);
  margin-top: 20px;
  transition: transform 0.2s, color 0.2s;
}
.service-card:hover .service-card-arrow { transform: translateX(4px); color: var(--ad-primary); }
.service-card-link { text-decoration: none; color: inherit; }

.page-hero {
  padding: 160px 0 80px;
  background: var(--ad-primary);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/background-images/background_munich_landscapes.webp') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero .td-container, .page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1, .page-hero h2 {
  color: var(--ad-white);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.5); }
.page-hero .breadcrumb a:hover { color: var(--ad-white); }
.page-hero .breadcrumb-sep { color: rgba(255,255,255,0.3); }

section { padding: 100px 0; }
section.section-dark { background: var(--ad-primary); }
section.section-dark h2 { color: var(--ad-white); }
section.section-dark p { color: rgba(255,255,255,0.6); }
section.section-dark .section-tag { color: rgba(255,255,255,0.4); }
section.section-dark .section-tag::before { color: var(--primary); }

.wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

.about-story { padding: 100px 0; background: var(--ad-white); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story-img { position: relative; }
.about-story-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-story-img-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 180px; height: 180px;
  background: var(--ad-grey-1);
  border: 1px solid var(--ad-line);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.about-story-img-accent .num { font-size: 48px; font-weight: 800; color: var(--ad-primary); line-height: 1; }
.about-story-img-accent .label { font-size: 12px; color: var(--ad-grey-3); }

.kontakt-section { padding: 100px 0; background: var(--ad-white); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.kontakt-info h2 { font-size: 48px; font-weight: 800; margin-bottom: 24px; }
.kontakt-info p { font-size: 15px; color: var(--ad-grey-2); line-height: 1.7; }
.kontakt-detail { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.kontakt-detail-item { display: flex; align-items: flex-start; gap: 16px; }
.kontakt-detail-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ad-grey-3); margin-bottom: 4px; }
.kontakt-detail-val { font-size: 15px; font-weight: 600; color: var(--ad-primary); }

.kontakt-form-wrap { padding: 48px; background: var(--ad-grey-1); border: 1px solid var(--ad-line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ad-grey-2); }
.form-group input,
.form-group textarea,
.form-group select {
  outline: none;
  background: var(--ad-white);
  height: 52px;
  width: 100%;
  font-family: var(--ff-main);
  font-size: 14px;
  color: var(--ad-primary);
  padding: 0 20px;
  border: 1px solid var(--ad-line);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--ad-primary); }
.form-group textarea { height: auto; padding: 16px 20px; line-height: 1.5; resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }

.preise-hero { padding: 160px 0 80px; background: var(--ad-primary); }
.preise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--ad-line); }
.preise-card { padding: 48px 36px; border-right: 1px solid var(--ad-line); background: var(--ad-white); }
.preise-card:last-child { border-right: none; }
.preise-card.featured { background: var(--ad-primary); }
.preise-card.featured .pricing-name { color: rgba(255,255,255,0.5); }
.preise-card.featured .pricing-price { color: var(--ad-white); }
.preise-card.featured .pricing-desc { color: rgba(255,255,255,0.6); }
.preise-card.featured .pricing-feature { color: rgba(255,255,255,0.75); }
.preise-card.featured .pricing-feature::before { background: var(--primary); }

.faq-page-section { padding: 80px 0; background: var(--ad-white); }
.faq-category-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ad-primary);
  padding: 24px 0;
  border-bottom: 2px solid var(--ad-primary);
  margin-bottom: 0;
}

.legal-section { padding: 80px 0; }

.scrolltotop {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}
.scrolltotop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scrolltotop-btn {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--ad-primary);
  color: var(--ad-white);
  border: none;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s;
}
.scrolltotop-btn:hover { background: #2a343a; }

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger > *.revealed {
  opacity: 1;
  transform: translateY(0);
}

.stagger.revealed > * { opacity: 1; transform: translateY(0); }
.stagger.revealed > *:nth-child(1) { transition-delay: 0.04s; }
.stagger.revealed > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.revealed > *:nth-child(3) { transition-delay: 0.20s; }
.stagger.revealed > *:nth-child(4) { transition-delay: 0.28s; }
.stagger.revealed > *:nth-child(5) { transition-delay: 0.36s; }
.stagger.revealed > *:nth-child(6) { transition-delay: 0.44s; }
.stagger.revealed > *:nth-child(7) { transition-delay: 0.52s; }
.stagger.revealed > *:nth-child(8) { transition-delay: 0.60s; }
.stagger.revealed > *:nth-child(9) { transition-delay: 0.68s; }
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 1200px) {
  h1 { font-size: 64px; }
  h2 { font-size: 44px; }
  .td-hero-achive-title { font-size: clamp(36px, 5vw, 64px); }
  .td-about-row { gap: 48px; }
  .td-process-head { gap: 40px; }
  .td-process-side, .process-side-card { width: 260px; padding-left: 32px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

@media (max-width: 991px) {
  h1 { font-size: 52px; }
  h2 { font-size: 38px; }

  .nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    height: 72px;
    padding: 0 24px;
  }
  .nav-logo {
    margin-right: 0;
    min-width: 0;
  }
  .nav-logo svg,
  .mobile-menu-logo { height: 34px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger {
    display: flex;
    justify-self: end;
    align-self: center;
    margin-left: 0;
  }

  .mobile-menu {
    z-index: 1005;
    padding-top: max(0px, env(safe-area-inset-top));
  }
  .mobile-menu-header {
    min-height: 72px;
    padding: 16px 24px;
  }
  .mobile-menu-close {
    width: 44px;
    height: 44px;
  }
  .mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  #mobile-menu .mobile-menu-contact #floating-callback-btn,
  #mobile-menu .mobile-menu-contact #floating-call-button {
    position: static;
    right: auto;
    bottom: auto;
    max-width: none;
    width: 100%;
  }
  #mobile-menu .mobile-menu-contact #floating-call-button {
    justify-content: flex-start;
    box-shadow: none;
  }
  #mobile-menu .mobile-menu-contact #floating-callback-btn {
    justify-content: center;
    box-shadow: none;
  }
  #mobile-menu .mobile-menu-contact #callback-panel {
    position: static;
    right: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 4px;
    box-shadow: none;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  #mobile-menu .mobile-menu-contact #callback-panel.open {
    display: block;
  }

  .td-hero-bottom .td-container { flex-direction: column; gap: 28px; }
  .td-hero-sub-col { max-width: 100%; }

  .td-about-row { flex-direction: column; gap: 40px; }
  .td-about-panels { flex: none; width: 100%; }

  .td-process-head, .process-head { flex-direction: column; gap: 32px; }
  .td-process-side, .process-side-card { width: 100%; border-left: none; border-top: 1px solid var(--ad-line); padding-left: 0; padding-top: 24px; }
  .td-process-grid, .process-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .td-process-card, .process-card-new { border-right: none; padding-right: 0; border-bottom: 1px solid var(--ad-line); }
  .td-process-card:nth-child(odd), .process-card-new:nth-child(odd) { border-right: 1px solid var(--ad-line); }

  .pricing-grid { grid-template-columns: 1fr; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .pricing-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .pricing-card:last-child { border-bottom: none; }

  .compare-grid { grid-template-columns: 1fr; }
  .compare-card-bad { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .footer-brand { grid-column: 1/-1; border-right: none; border-bottom: 1px solid var(--ad-line); padding-right: 0; padding-bottom: 40px; margin-bottom: 0; }
  .footer-col { border-bottom: 1px solid var(--ad-line); padding: 32px 32px 32px 0; }
  .footer-col:nth-child(2) { border-right: 1px solid var(--ad-line); }
  .footer-col:last-child { border-right: none; }

  .usp-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }

  .td-svc-cols { flex-wrap: wrap; }
  .td-svc-col  { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.1); background: transparent; }
  /* Hintergrundbild über die gesamte Section */
  .td-svc-bg:first-child { opacity: 1 !important; }
  /* Ein Overlay auf der gesamten Section (inkl. Überschrift) */
  .td-service-area::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(32,40,45,0.65);
    z-index: 0;
    pointer-events: none;
  }
  /* Überschrift und Spalten über dem Section-Overlay */
  .td-services-head {
    background: transparent !important;
    border-color: rgba(255,255,255,0.1) !important;
  }
  /* Kein separates Overlay mehr auf den Spalten nötig */
  .td-svc-col::before { opacity: 0 !important; }
  #svc-cols.has-hover .td-svc-col:not(.active)::before { opacity: 0 !important; }
  /* Text weiß */
  .td-svc-num   { color: rgba(255,255,255,0.45) !important; }
  .td-svc-title { color: #fff !important; }
  .td-svc-icon  { color: #fff !important; opacity: 1 !important; }
  /* Content immer sichtbar */
  .td-svc-content-inner {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  .td-svc-para  { color: rgba(255,255,255,0.65) !important; }
  .td-svc-link  { color: #fff !important; }

  .cta-card { padding: 48px 32px; }
}

@media (max-width: 767px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .td-section-title { font-size: 32px !important; }

  .td-hero-ticker-item { font-size: 72px; }
  .td-hero-achive-title { font-size: 38px; }

  .usp-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .preise-grid { grid-template-columns: 1fr; }
  .td-svc-col { flex: 0 0 100%; }
  .form-row { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-col { border-right: none !important; }
  .footer-col:nth-child(2) { border-right: none !important; }

  .td-process-grid, .process-cards-grid { grid-template-columns: 1fr; }
  .td-process-card:nth-child(odd), .process-card-new:nth-child(odd) { border-right: none; }
  .process-card-new,
  .process-card-new:first-child,
  .process-card-new:last-child { padding: 28px 0; border-right: none; }
  .process-card-new:last-child { border-bottom: none; }
  .process-card-meta { margin-bottom: 14px; }

  .cta-card { padding: 40px 24px; }
  .cta-actions { flex-direction: column; }
  .cta-trust { gap: 16px; }

  .td-services-head { padding: 48px 0 0; }
  .td-services-head .td-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 32px;
  }
  .td-services-head .td-section-pre  { color: rgba(255,255,255,0.5) !important; }
  .td-services-head .td-section-title { color: #fff !important; }
  .td-services-head .td-btn-outline {
    border-color: rgba(255,255,255,0.3) !important;
    color: #fff !important;
  }
  .td-services-head .td-btn-outline:hover {
    background: rgba(255,255,255,0.1) !important;
  }
}

@media (max-width: 575px) {
  .wrap, .td-container { padding: 0 20px; }
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  .nav-inner {
    height: 68px;
    gap: 12px;
    padding: 0 16px;
  }
  .nav-logo svg,
  .mobile-menu-logo { height: 30px; }
  .mobile-menu-header {
    min-height: 68px;
    padding: 14px 16px;
  }
  .mobile-menu-contact {
    padding: 18px 16px 0;
  }
  .mobile-menu-links { padding: 24px 16px; }
  .mobile-menu-footer { padding: 20px 16px 24px; }
  .td-hero-ticker-item { font-size: 52px; padding: 0 20px; }
  .td-hero-bottom { padding: 32px 0 48px; }
  section { padding: 72px 0; }
  .kontakt-form-wrap { padding: 28px 20px; }
  .td-about-area { padding: 72px 0; }
  .td-process-area, .process-section { padding: 72px 0; }
}

.hero-sentence-wrap {
  display: block;
  position: relative;
}
.hero-sentence-wrap::after {
  content: 'die Anfragen auslösen.';
  display: block;
  visibility: hidden;
  pointer-events: none;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-sentence {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  color: var(--primary);
}
.hero-sentence.active { opacity: 1; }
.hero-sentence.leaving { opacity: 0; }
.hero-sentence.hero-stroke {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px var(--primary);
  color: transparent;
}

#floating-call-button {
  position: fixed;
  bottom: calc(32px + var(--floating-ui-offset, 0px));
  right: 32px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 14px;
  background: var(--primary);
  color: var(--ad-white);
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(26,157,217,0.35);
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
  max-width: 220px;
}
#floating-call-button:hover {
  background: var(--primary-dark);
  box-shadow: 0 12px 36px rgba(26,157,217,0.45);
  transform: translateY(-2px);
  color: var(--ad-white);
}
.floating-call-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.floating-call-icon svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: var(--ad-white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.floating-call-copy { display: flex; flex-direction: column; }
.floating-call-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  line-height: 1;
  margin-bottom: 3px;
}
.floating-call-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--ad-white);
  white-space: nowrap;
}
body.has-floating-call .scrolltotop { bottom: calc(32px + var(--floating-ui-offset, 0px) + 72px); }

#floating-callback-btn {
  position: fixed;
  bottom: calc(32px + var(--floating-ui-offset, 0px) + 68px);
  right: 32px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 12px;
  background: var(--ad-white);
  color: var(--ad-primary);
  border: 1px solid var(--ad-line);
  box-shadow: 0 4px 16px rgba(32,40,45,0.10);
  cursor: pointer;
  font-family: var(--ff-main);
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  max-width: 220px;
  white-space: nowrap;
}
#floating-callback-btn:hover {
  background: var(--ad-grey-1);
  box-shadow: 0 6px 20px rgba(32,40,45,0.14);
  transform: translateY(-1px);
}
#floating-callback-btn svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#callback-panel {
  position: fixed;
  bottom: calc(32px + var(--floating-ui-offset, 0px) + 148px);
  right: 32px;
  z-index: 801;
  width: 320px;
  background: var(--ad-white);
  border: 1px solid var(--ad-line);
  box-shadow: 0 16px 48px rgba(32,40,45,0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
#callback-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.callback-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--ad-line);
}
.callback-panel-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ad-primary);
}
.callback-panel-close {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ad-grey-1);
  border: 1px solid var(--ad-line);
  cursor: pointer;
  font-size: 16px;
  color: var(--ad-grey-2);
  transition: background 0.2s, color 0.2s;
}
.callback-panel-close:hover { background: var(--ad-primary); color: var(--ad-white); }
.callback-panel-body { padding: 20px; }
.callback-panel-body .form-group { margin-bottom: 12px; }
.callback-panel-body .form-control {
  height: 44px;
  font-size: 13px;
  padding: 0 14px;
}
.callback-panel-body textarea.form-control {
  height: 80px;
  padding: 12px 14px;
  resize: none;
}
.callback-panel-submit {
  width: 100%;
  padding: 13px;
  background: var(--primary);
  color: var(--ad-white);
  font-family: var(--ff-main);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.callback-panel-submit:hover { background: var(--primary-dark); }
.callback-success {
  display: none;
  padding: 32px 20px;
  text-align: center;
}
.callback-success.visible { display: block; }
.callback-success .cb-emoji { font-size: 2rem; margin-bottom: 10px; }
.callback-success strong { display: block; font-size: 15px; font-weight: 800; color: var(--ad-primary); margin-bottom: 6px; }
.callback-success p { font-size: 13px; color: var(--ad-grey-2); margin: 0; }

@media (max-width: 575px) {
  #floating-call-button { right: 16px; bottom: calc(16px + var(--floating-ui-offset, 0px)); max-width: calc(100vw - 32px); }
  #floating-callback-btn { right: 16px; bottom: calc(16px + var(--floating-ui-offset, 0px) + 68px); max-width: calc(100vw - 32px); }
  #callback-panel { right: 16px; left: 16px; width: auto; bottom: calc(16px + var(--floating-ui-offset, 0px) + 148px); }
}

.leistung-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--ad-line);
  min-height: 480px;
  overflow: hidden;
}
.leistung-item.reverse { direction: rtl; }
.leistung-item.reverse > * { direction: ltr; }

.img-placeholder {
  background-image: var(--media-image);
  background-size: cover;
  background-position: var(--media-position, center);
  position: relative;
  min-height: 320px;
  overflow: hidden;
  cursor: pointer;
}
.img-placeholder > div {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32,40,45,0.8) 0%, rgba(32,40,45,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.leistung-item:hover .img-placeholder > div { opacity: 1; }
.img-placeholder > div strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--ad-white);
  display: block;
  margin-bottom: 8px;
}
.img-placeholder > div span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.leistung-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-right: 1px solid var(--ad-line);
}
.leistung-item.reverse .leistung-content { border-right: none; border-left: 1px solid var(--ad-line); }
.leistung-content .icon-box {
  font-size: 24px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ad-line);
  background: var(--ad-white);
  margin-bottom: 24px;
}
.leistung-content h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--ad-primary);
  margin-bottom: 16px;
}
.leistung-content > p {
  font-size: 15px;
  color: var(--ad-grey-2);
  line-height: 1.7;
  margin-bottom: 24px;
}
.leistung-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ad-grey-2);
  border: 1px solid var(--ad-line);
  padding: 4px 10px;
  background: var(--ad-white);
  transition: border-color 0.2s, color 0.2s;
}
.tag:hover { border-color: var(--primary); color: var(--primary); }
.leistung-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.leistung-step {
  font-size: 13px;
  color: var(--ad-grey-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.leistung-step::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--primary);
  flex-shrink: 0;
}
.leistung-cta {
  margin-top: auto;
  align-self: flex-start;
}
@media (max-width: 900px) {
  .leistung-item { grid-template-columns: 1fr; min-height: auto; }
  .leistung-item.reverse { direction: ltr; }
  .img-placeholder { min-height: 260px; }
  .leistung-content { padding: 40px 32px; border-right: none !important; border-left: none !important; border-bottom: 1px solid var(--ad-line); }
}
@media (max-width: 575px) {
  .leistung-content { padding: 32px 20px; }
}

.config-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  border: 1px solid var(--ad-line);
  margin-top: 56px;
  align-items: start;
}
.config-main {
  padding: 48px;
  border-right: 1px solid var(--ad-line);
}
.config-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ad-primary);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ad-line);
}
.config-group {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ad-line);
}
.config-group:last-of-type { border-bottom: none; }
.config-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ad-primary);
  margin-bottom: 16px;
}
.config-label span {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ad-grey-3);
  font-size: 12px;
}
.config-options { display: flex; gap: 10px; flex-wrap: wrap; }
.config-option {
  padding: 14px 20px;
  background: var(--ad-white);
  border: 1px solid var(--ad-line);
  color: var(--ad-primary);
  font-family: var(--ff-main);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  flex: 1;
  min-width: 200px;
}
.config-option:hover { border-color: var(--primary); }
.config-option.selected {
  background: var(--ad-primary);
  border-color: var(--ad-primary);
  color: var(--ad-white);
}
.config-range {
  width: 100%;
  height: 4px;
  background: var(--ad-line);
  -webkit-appearance: none;
  margin: 16px 0 8px;
  cursor: pointer;
}
.config-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: 0;
  cursor: pointer;
  border: none;
}
.config-range::-moz-range-thumb {
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: 0;
  border: none;
  cursor: pointer;
}
.config-microcopy {
  font-size: 12px;
  color: var(--ad-grey-3);
  line-height: 1.6;
  margin: 10px 0 0;
}
.config-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0 0;
  border-top: 1px solid var(--ad-line);
  flex-wrap: wrap;
}
.config-result-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ad-grey-3);
  margin-bottom: 6px;
}
#total-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--ad-primary);
  line-height: 1;
}
.config-result-note {
  font-size: 12px;
  color: var(--ad-grey-3);
  margin-top: 6px;
}

.brand-question-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--ad-line);
  margin-bottom: 20px;
}
.brand-question-card {
  padding: 20px;
  border-right: 1px solid var(--ad-line);
}
.brand-question-card:last-child { border-right: none; }
.brand-question-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ad-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}
.brand-toggle-group { display: flex; gap: 6px; }
.brand-toggle {
  padding: 6px 16px;
  border: 1px solid var(--ad-line);
  background: var(--ad-white);
  font-family: var(--ff-main);
  font-size: 13px;
  font-weight: 600;
  color: var(--ad-grey-2);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.brand-toggle:hover { border-color: var(--primary); color: var(--primary); }
.brand-toggle.selected { background: var(--primary); border-color: var(--primary); color: var(--ad-white); }
.brand-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  background: var(--ad-grey-1);
  border: 1px solid var(--ad-line);
  margin-bottom: 12px;
}
.brand-summary-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ad-grey-3);
  margin-bottom: 4px;
}
.brand-summary strong { font-size: 14px; font-weight: 700; color: var(--ad-primary); display: block; }
.brand-summary p { font-size: 12px; color: var(--ad-grey-2); margin: 4px 0 0; }
.brand-summary-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.color-choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.color-choice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--ad-line);
  background: var(--ad-white);
  font-family: var(--ff-main);
  font-size: 13px;
  font-weight: 600;
  color: var(--ad-grey-2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.color-choice:hover { border-color: var(--ad-primary); color: var(--ad-primary); }
.color-choice.selected { border-color: var(--ad-primary); color: var(--ad-primary); }
.color-swatch {
  display: block;
  width: 16px; height: 16px;
  background: var(--swatch);
  border: 1px solid rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ad-line);
  border-left: 1px solid var(--ad-line);
  margin-bottom: 12px;
}
.addon-card {
  padding: 16px;
  border-right: 1px solid var(--ad-line);
  border-bottom: 1px solid var(--ad-line);
  cursor: pointer;
  transition: background 0.2s;
}
.addon-card:hover { background: var(--ad-grey-1); }
.addon-card.selected { background: var(--ad-primary); }
.addon-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--ad-primary);
  margin-bottom: 4px;
  transition: color 0.2s;
}
.addon-card.selected .addon-name { color: var(--ad-white); }
.addon-price {
  font-size: 12px;
  color: var(--ad-grey-3);
  font-weight: 600;
  transition: color 0.2s;
}
.addon-card.selected .addon-price { color: rgba(255,255,255,0.65); }
.cookie-banner-legal {
  font-size: 11px;
  color: var(--ad-grey-3);
  line-height: 1.5;
  display: block;
}

.custom-color-row {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--ad-line);
}
.custom-color-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ad-grey-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.custom-color-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.custom-color-picker {
  width: 44px;
  height: 44px;
  border: 1px solid var(--ad-line);
  border-radius: 0;
  padding: 2px;
  cursor: pointer;
  background: none;
  flex-shrink: 0;
}
.custom-color-hex-input {
  height: 44px;
  border: 1px solid var(--ad-line);
  padding: 0 14px;
  font-family: var(--ff-main);
  font-size: 13px;
  color: var(--ad-primary);
  width: 120px;
  outline: none;
  transition: border-color 0.2s;
}
.custom-color-hex-input:focus { border-color: var(--primary); }
.custom-color-name-input {
  height: 44px;
  border: 1px solid var(--ad-line);
  padding: 0 14px;
  font-family: var(--ff-main);
  font-size: 13px;
  color: var(--ad-primary);
  width: 150px;
  outline: none;
  transition: border-color 0.2s;
}
.custom-color-name-input:focus { border-color: var(--primary); }
.custom-color-add {
  height: 44px;
  padding: 0 20px;
  background: var(--ad-primary);
  color: var(--ad-white);
  border: none;
  font-family: var(--ff-main);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.custom-color-add:hover { background: var(--primary); }

.font-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ad-line);
  border-left: 1px solid var(--ad-line);
  margin-bottom: 12px;
}
.font-choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px;
  border-right: 1px solid var(--ad-line);
  border-bottom: 1px solid var(--ad-line);
  cursor: pointer;
  background: var(--ad-white);
  font-family: var(--ff-main);
  transition: background 0.15s;
  gap: 6px;
  text-align: center;
}
.font-choice:hover { background: var(--ad-grey-1); }
.font-choice.selected {
  background: var(--ad-primary);
}
.font-preview {
  font-size: 32px;
  font-weight: 700;
  color: var(--ad-primary);
  line-height: 1;
  display: block;
  transition: color 0.15s;
}
.font-choice.selected .font-preview { color: var(--ad-white); }
.font-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--ad-primary);
  display: block;
  transition: color 0.15s;
}
.font-choice.selected .font-name { color: var(--ad-white); }
.font-style {
  font-size: 11px;
  color: var(--ad-grey-3);
  display: block;
  transition: color 0.15s;
}
.font-choice.selected .font-style { color: rgba(255,255,255,0.6); }
.custom-font-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
@media (max-width: 800px) {
  .font-choice-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-color-inputs { flex-direction: column; align-items: stretch; }
  .custom-color-hex-input, .custom-color-name-input { width: 100%; }
}

.config-side { padding: 32px 28px; position: sticky; top: 90px; }
.config-preview-card {
  background: var(--ad-grey-1);
  border: 1px solid var(--ad-line);
  padding: 24px 22px;
}
.config-preview-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 8px;
}
.config-preview-headline {
  font-size: 22px;
  font-weight: 800;
  color: var(--ad-primary);
  margin-bottom: 8px;
}
.config-preview-sub {
  font-size: 13px;
  color: var(--ad-grey-2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.preview-browser {
  background: var(--ad-primary);
  margin-bottom: 16px;
  overflow: hidden;
}
.preview-browser-top {
  display: flex;
  gap: 5px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.07);
}
.preview-browser-top span {
  display: block;
  width: 7px; height: 7px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}
.preview-browser-dot-1 { background: var(--preview-accent, rgba(255,255,255,0.2)); }
.preview-browser-dot-2 { background: var(--preview-accent-2, rgba(255,255,255,0.2)); }
.preview-browser-dot-3 { background: var(--preview-accent-3, rgba(255,255,255,0.2)); }
.preview-browser-hero { padding: 18px; }
.preview-kicker {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--preview-accent, var(--primary));
  margin-bottom: 8px;
}
.preview-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--ad-white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.preview-body { display: flex; gap: 10px; align-items: flex-start; }
.preview-copy-lines { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.preview-copy-lines span {
  display: block;
  height: 6px;
  background: rgba(255,255,255,0.12);
}
.preview-line-1 { background: color-mix(in srgb, var(--preview-accent, #1A9DD9) 72%, white 28%); }
.preview-line-2 { background: color-mix(in srgb, var(--preview-accent-2, #d8e8f4) 72%, white 28%); }
.preview-line-3 { background: color-mix(in srgb, var(--preview-accent-3, #0b1730) 50%, white 50%); }
.preview-copy-lines span:nth-child(2) { width: 85%; }
.preview-copy-lines span:nth-child(3) { width: 65%; }
.preview-card-visual {
  width: 64px; height: 64px;
  background:
    radial-gradient(circle at 28% 68%, color-mix(in srgb, var(--preview-accent-2, #d8e8f4) 72%, white 28%) 0 16px, transparent 17px),
    radial-gradient(circle at 76% 24%, color-mix(in srgb, var(--preview-accent, #1A9DD9) 48%, white 52%) 0 22px, transparent 23px),
    linear-gradient(145deg, color-mix(in srgb, var(--preview-accent-3, #0b1730) 86%, #10192e 14%) 0%, color-mix(in srgb, var(--preview-accent, #1A9DD9) 32%, #0e1630 68%) 100%);
  border: 1px solid color-mix(in srgb, var(--preview-accent, #1A9DD9) 24%, rgba(255,255,255,0.08) 76%);
  flex-shrink: 0;
}
.preview-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.preview-overview-card {
  background: var(--ad-white);
  border: 1px solid var(--ad-line);
  padding: 12px 12px 10px;
  min-width: 0;
}
.preview-overview-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ad-grey-3);
  margin-bottom: 6px;
}
.preview-overview-card strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--ad-primary);
  line-height: 1.35;
  word-break: break-word;
}
.preview-chip-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.preview-chip-list span {
  font-size: 12px;
  color: var(--ad-grey-2);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.45;
}
.preview-chip-list span::before {
  content: '—';
  color: var(--primary);
  flex-shrink: 0;
}
.preview-meta-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ad-grey-3);
  margin: 16px 0 8px;
}
.preview-meta-title-spaced { margin-top: 20px; }
.preview-surface {
  background: var(--ad-white);
  border: 1px solid var(--ad-line);
  padding: 12px;
}
.preview-branding-note strong { font-size: 14px; font-weight: 700; color: var(--ad-primary); display: block; margin-bottom: 4px; }
.preview-branding-note p { font-size: 12px; color: var(--ad-grey-2); margin: 0; line-height: 1.55; }
.preview-color-list { display: flex; flex-wrap: wrap; gap: 6px; min-height: 22px; }
.preview-color-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ad-grey-2);
  background: var(--ad-white);
  border: 1px solid var(--ad-line);
  padding: 5px 8px;
}
.preview-color-chip i {
  display: inline-block;
  width: 14px; height: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  flex-shrink: 0;
  font-style: normal;
}
.preview-color-list span, .preview-addon-list span {
  font-size: 12px;
  color: var(--ad-grey-3);
  font-style: italic;
}
.preview-color-list .preview-color-dot {
  width: 18px; height: 18px;
  border: 1px solid rgba(0,0,0,0.1);
  display: inline-block;
  font-style: normal;
}
.preview-addon-list { display: flex; flex-wrap: wrap; gap: 6px; min-height: 22px; }
.preview-addon-list .preview-addon-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--ad-grey-2);
  border: 1px solid var(--ad-line);
  background: var(--ad-white);
  padding: 5px 8px;
  font-style: normal;
}
.preview-summary {
  border-top: 1px solid var(--ad-line);
  margin-top: 18px;
  padding-top: 18px;
}
.preview-summary-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ad-grey-3);
  margin-bottom: 6px;
}
.preview-summary-price {
  font-size: 30px;
  font-weight: 800;
  color: var(--ad-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.preview-summary-note {
  font-size: 12px;
  color: var(--ad-grey-3);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 1100px) {
  .config-wrap { grid-template-columns: 1fr; }
  .config-main { border-right: none; border-bottom: 1px solid var(--ad-line); }
  .config-side { position: static; }
  .preview-overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-question-grid { grid-template-columns: 1fr; }
  .brand-question-card { border-right: none; border-bottom: 1px solid var(--ad-line); }
  .brand-question-card:last-child { border-bottom: none; }
}
@media (max-width: 575px) {
  .config-main { padding: 28px 20px; }
  .config-preview-card { padding: 20px 18px; }
  .preview-overview-grid { grid-template-columns: 1fr; }
  .preview-browser-hero { padding: 16px; }
  .preview-title { font-size: 15px; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ad-line);
  border-left: 1px solid var(--ad-line);
}
.card {
  padding: 32px;
  border-right: 1px solid var(--ad-line);
  border-bottom: 1px solid var(--ad-line);
  background: var(--ad-white);
  transition: background 0.2s;
}
.card:hover { background: var(--ad-grey-1); }
.card h4 { font-size: 18px; font-weight: 700; color: var(--ad-primary); }
.card p { font-size: 14px; color: var(--ad-grey-2); line-height: 1.6; margin: 0; }
@media (max-width: 991px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .grid-4 { grid-template-columns: 1fr; }
}

:root {
  --gray-50:    var(--ad-grey-1);
  --gray-200:   var(--ad-line);
  --text-muted: var(--ad-grey-3);
  --radius:     0px;
}

.form-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ad-grey-2); margin-bottom: 6px; display: block; }
.form-control {
  outline: none;
  background: var(--ad-white);
  height: 52px;
  width: 100%;
  font-family: var(--ff-main);
  font-size: 14px;
  color: var(--ad-primary);
  padding: 0 20px;
  border: 1px solid var(--ad-line);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-control:focus { border-color: var(--primary); }
.form-control::placeholder { color: #aaa; }
textarea.form-control { height: auto; padding: 16px 20px; line-height: 1.5; resize: vertical; min-height: 120px; }

.kontakt-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; color: var(--primary); display: flex; align-items: center; }
.contact-icon .material-icons { font-size: 22px; }
.contact-item h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ad-grey-3); margin-bottom: 2px; }
.contact-item p { font-size: 15px; font-weight: 600; color: var(--ad-primary); margin: 0; }

.reveal-left  { opacity: 0; transform: translateX(-20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right { opacity: 0; transform: translateX(20px);  transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.revealed, .reveal-right.revealed { opacity: 1; transform: translateX(0); }

.form-success {
  display: none;
  text-align: center;
  padding: 64px 24px;
}
.form-success.visible { display: block; }

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lead-form-shell {
  position: relative;
}
.lead-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.form-error {
  min-height: 16px;
  font-size: 12px;
  line-height: 1.3;
  color: #c73939;
}
.form-control.is-invalid {
  border-color: #c73939 !important;
  box-shadow: 0 0 0 1px rgba(199,57,57,0.08);
}
.form-check-row {
  margin: 6px 0 14px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ad-grey-2);
}
.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex-shrink: 0;
}
.form-check a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ad-grey-3);
}
.form-status[data-state="error"] { color: #c73939; }
.form-status[data-state="success"] { color: var(--primary); }
.form-status[data-state="loading"] { color: var(--ad-primary); }
.lead-form.is-loading {
  pointer-events: none;
}
.lead-form .btn[disabled] {
  opacity: 0.8;
}
.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--ad-white);
  border-radius: 50%;
  animation: btn-spin 0.8s linear infinite;
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

.contact-social-strip {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--ad-line);
}
.contact-social-label {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ad-grey-3);
}
.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-social-links a,
.lp-direct-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ad-line);
  color: var(--ad-primary);
  font-weight: 700;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.contact-social-links a:hover,
.lp-direct-contact a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

#floating-whatsapp-button {
  position: fixed;
  right: 32px;
  bottom: calc(32px + var(--floating-ui-offset, 0px) + 136px);
  z-index: 799;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 12px;
  background: var(--ad-primary);
  color: var(--ad-white);
  box-shadow: 0 10px 28px rgba(32,40,45,0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
#floating-whatsapp-button:hover {
  color: var(--ad-white);
  background: #111a33;
  box-shadow: 0 14px 32px rgba(32,40,45,0.2);
  transform: translateY(-2px);
}
.floating-whatsapp-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,157,217,0.16);
  flex-shrink: 0;
}
.floating-whatsapp-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.floating-whatsapp-copy {
  display: flex;
  flex-direction: column;
}
.floating-whatsapp-title {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.64);
  line-height: 1;
  margin-bottom: 3px;
}
.floating-whatsapp-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

/* ── Help Bar (bottom banner) ── */
#help-widget {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(var(--floating-ui-offset, 0px));
  z-index: 798;
  background: #20282d;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
#help-widget.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.help-bar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  height: 52px;
  max-width: 1200px;
  margin: 0 auto;
}
.help-bar-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a9dd9;
  box-shadow: 0 0 0 3px rgba(26,157,217,0.25);
  animation: help-bar-pulse 2s ease-in-out infinite;
}
@keyframes help-bar-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(26,157,217,0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(26,157,217,0.08); }
}
.help-bar-text {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  margin-right: 4px;
}
.help-bar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.help-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.12);
}
.help-bar-link:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.help-bar-link-wa {
  background: rgba(37,211,102,0.15);
  color: #25D366;
  border-color: rgba(37,211,102,0.25);
}
.help-bar-link-wa:hover {
  background: rgba(37,211,102,0.25);
  color: #25D366;
}
.help-bar-close {
  flex-shrink: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.help-bar-close:hover { color: rgba(255,255,255,0.9); }

.lp-topbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230,230,230,0.9);
}
.lp-topbar-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lp-topbar-logo {
  display: inline-flex;
  align-items: center;
}
.lp-topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lp-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ad-line);
  font-size: 14px;
  font-weight: 700;
  color: var(--ad-primary);
}
.lp-page {
  overflow: hidden;
}
.lp-hero {
  padding: 64px 0 36px;
  background:
    radial-gradient(circle at top left, rgba(26,157,217,0.12), transparent 30%),
    var(--ad-white);
}
.lp-hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 42px;
  align-items: center;
}
.lp-headline {
  max-width: 11.5ch;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}
.lp-headline .grad-text { color: var(--primary); }
.lp-sub,
.lp-section-copy {
  max-width: 680px;
  font-size: 17px;
  color: var(--ad-grey-2);
  line-height: 1.75;
}
.lp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.lp-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.lp-hero-trust span,
.lp-why-panel-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--ad-line);
  color: var(--ad-grey-2);
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,255,255,0.84);
}
.lp-hero-visual-frame {
  position: relative;
  min-height: 620px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(11,18,37,0.14), rgba(11,18,37,0.5)),
    url('assets/images/website_office.webp') center / cover no-repeat;
  overflow: hidden;
}
.lp-hero-visual-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.22), transparent 44%, rgba(11,18,37,0.22) 100%);
}
.lp-hero-visual-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ad-white);
  background: rgba(17,26,51,0.58);
  border: 1px solid rgba(255,255,255,0.24);
}
.lp-form-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ad-primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.lp-form-title .material-icons {
  font-size: 20px;
  color: var(--primary);
}
.lp-hero-mockup {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  z-index: 1;
  padding: 22px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 20px 50px rgba(14,22,35,0.18);
}
.lp-mockup-browser {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}
.lp-mockup-browser span {
  width: 8px;
  height: 8px;
  background: rgba(11,18,37,0.15);
}
.lp-mockup-copy strong {
  display: block;
  font-size: 24px;
  line-height: 1.12;
  margin-bottom: 10px;
  color: var(--ad-primary);
}
.lp-mockup-copy p {
  font-size: 14px;
  color: var(--ad-grey-2);
  max-width: 26ch;
  margin-bottom: 16px;
}
.lp-mockup-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-mockup-lines span {
  display: block;
  height: 7px;
  background: rgba(11,18,37,0.08);
}
.lp-mockup-lines span:nth-child(1) { width: 100%; }
.lp-mockup-lines span:nth-child(2) { width: 82%; }
.lp-mockup-lines span:nth-child(3) { width: 60%; }
.lp-hero-kpi {
  position: absolute;
  z-index: 1;
  min-width: 210px;
  padding: 16px 18px;
  background: rgba(17,26,51,0.7);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--ad-white);
}
.lp-hero-kpi strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 800;
}
.lp-hero-kpi span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.lp-hero-kpi-top { top: 96px; right: 32px; }
.lp-hero-kpi-bottom { right: 32px; bottom: 210px; }

.lp-trust-section,
.lp-services-section,
.lp-why-section,
.lp-process-section,
.lp-price-section,
.lp-contact-section {
  padding: 100px 0;
  background: var(--ad-white);
}
.lp-why-section,
.lp-price-section {
  background: var(--ad-grey-1);
}

.lp-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ad-line);
  border-left: 1px solid var(--ad-line);
}
.lp-stat-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 32px 28px;
  border-right: 1px solid var(--ad-line);
  border-bottom: 1px solid var(--ad-line);
  background: var(--ad-white);
}
.lp-stat-card strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.lp-stat-card span {
  font-size: 13px;
  color: var(--ad-grey-3);
  font-weight: 500;
}
.lp-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  color: #f59e0b;
}
.lp-review-stars .material-icons {
  font-size: 16px;
}
.lp-review-author {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ad-grey-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lp-review-grid,
.lp-services-grid,
.lp-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ad-line);
  border-left: 1px solid var(--ad-line);
  margin-top: 24px;
}
.lp-services-grid {
  grid-template-columns: repeat(4, 1fr);
}
.lp-review-card,
.lp-service-card,
.lp-process-card {
  padding: 32px;
  background: var(--ad-white);
  border-right: 1px solid var(--ad-line);
  border-bottom: 1px solid var(--ad-line);
}
.lp-service-card h3,
.lp-process-card h3 {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ad-primary);
}
.lp-review-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.35;
  color: var(--ad-primary);
}
.lp-review-card p,
.lp-service-card p,
.lp-process-card p,
.lp-price-box p,
.lp-cta-band p {
  margin: 0;
  font-size: 15px;
  color: var(--ad-grey-2);
  line-height: 1.7;
}
.lp-why-grid,
.lp-contact-grid,
.lp-price-box,
.lp-cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 32px;
  align-items: start;
}
.lp-why-points {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}
.lp-why-points div,
.lp-why-panel {
  padding: 28px;
  border: 1px solid var(--ad-line);
  background: var(--ad-white);
}
.lp-form-card {
  padding: 40px;
  border: 1px solid var(--ad-line);
  background: var(--ad-white);
}
.lp-why-points strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}
.lp-why-points span {
  font-size: 14px;
  color: var(--ad-grey-2);
  line-height: 1.7;
}
.lp-why-panel {
  display: grid;
  gap: 22px;
}
.lp-why-panel-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 1.1;
}
.lp-why-panel-stat span {
  font-size: 14px;
  color: var(--ad-grey-2);
  line-height: 1.7;
}
.lp-why-panel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lp-process-card span {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 34px;
  font-weight: 800;
  color: rgba(32,40,45,0.14);
  line-height: 1;
}
.lp-price-box {
  padding: 40px;
  border: 1px solid var(--ad-line);
}
.lp-price-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.lp-price-value {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  line-height: 1;
  color: var(--ad-primary);
}
.lp-cta-band {
  padding: 0 0 100px;
  background: var(--ad-white);
}
.lp-cta-band-inner {
  padding: 40px;
  border: 1px solid var(--ad-line);
}
.lp-cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  align-self: center;
}
.lp-contact-grid {
  align-items: start;
}
.lp-direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.lp-form-card {
  box-shadow: 0 18px 40px rgba(32,40,45,0.06);
}
.lp-form-sub {
  margin: 10px 0 24px;
  font-size: 15px;
  color: var(--ad-grey-2);
}

@media (max-width: 1100px) {
  .lp-hero-stage,
  .lp-why-grid,
  .lp-contact-grid,
  .lp-price-box,
  .lp-cta-band-inner {
    grid-template-columns: 1fr;
  }
  .lp-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-hero-visual-frame {
    min-height: 520px;
  }
}

@media (max-width: 767px) {
  .lp-topbar-inner {
    min-height: 74px;
    flex-wrap: wrap;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .lp-topbar-actions {
    width: 100%;
    justify-content: space-between;
  }
  .lp-hero,
  .lp-trust-section,
  .lp-services-section,
  .lp-why-section,
  .lp-process-section,
  .lp-price-section,
  .lp-contact-section,
  .td-faq-area,
  .lp-cta-band {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .lp-hero-stage {
    gap: 28px;
  }
  .lp-headline {
    max-width: none;
    font-size: clamp(38px, 12vw, 62px);
  }
  .lp-hero-visual-frame {
    min-height: 420px;
    padding: 20px;
  }
  .lp-hero-kpi {
    position: static;
    margin-top: 14px;
  }
  .lp-hero-mockup {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .lp-stats-row,
  .lp-review-grid,
  .lp-services-grid,
  .lp-process-grid {
    grid-template-columns: 1fr;
  }
  .lp-price-box,
  .lp-cta-band-inner,
  .lp-why-points div,
  .lp-why-panel,
  .lp-form-card {
    padding: 24px 20px;
  }
  .lp-cta-band-actions {
    justify-content: flex-start;
  }
  #floating-whatsapp-button {
    right: 16px;
    bottom: calc(16px + var(--floating-ui-offset, 0px) + 136px);
    max-width: calc(100vw - 32px);
  }
  #help-widget {
    left: 0;
    right: 0;
    bottom: calc(var(--floating-ui-offset, 0px));
    width: 100%;
  }
  .help-bar-inner {
    padding: 0 16px;
    gap: 10px;
  }
  .help-bar-text { display: none; }
  .help-bar-dot  { display: none; }
}

.nav-logo span {
  font-family: var(--ff-main);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--ad-white);
  transition: color 0.3s;
}
nav#main-nav.scrolled .nav-logo span { color: var(--ad-primary); }

.about-story-section {
  padding: 100px 0;
  background: var(--ad-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-quote-band {
  padding: 100px 0;
  background: var(--ad-primary);
  color: var(--ad-white);
}
.about-quote-band h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--ad-white);
  line-height: 1.12;
  text-align: center;
}
.qs {
  color: var(--primary);
  display: block;
}
.text-white { color: var(--ad-white) !important; }

.about-values-section {
  padding: 100px 0;
  background: var(--ad-grey-1);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ad-line);
  border-left: 1px solid var(--ad-line);
}
.values-grid .card {
  border-right: 1px solid var(--ad-line);
  border-bottom: 1px solid var(--ad-line);
}
.values-grid .card .icon-box {
  font-size: 22px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ad-line);
  background: var(--ad-white);
  margin-bottom: 20px;
  color: var(--primary);
}
.values-grid .card .icon-box .material-icons { font-size: 22px; }

.about-services-section {
  padding: 100px 0;
  background: var(--ad-white);
}

.is-clickable { cursor: pointer; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
  .values-grid { grid-template-columns: 1fr; }
  .about-story-section, .about-values-section,
  .about-services-section, .about-quote-band { padding: 72px 0; }
}

.legal-meta {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 100px;
  padding: 28px 24px;
  background: var(--ad-grey-1);
  border: 1px solid var(--ad-line);
}
.legal-toc h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ad-primary);
  margin-bottom: 6px;
}
.legal-toc p {
  font-size: 12px;
  color: var(--ad-grey-3);
  margin-bottom: 20px;
}
.legal-toc ul { display: flex; flex-direction: column; gap: 8px; }
.legal-toc a {
  font-size: 13px;
  font-weight: 600;
  color: var(--ad-grey-2);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.legal-toc a::before { content: '—'; color: var(--primary); flex-shrink: 0; }
.legal-toc a:hover { color: var(--ad-primary); }

.legal-content { min-width: 0; }
.legal-block {
  padding: 40px 0;
  border-bottom: 1px solid var(--ad-line);
}
.legal-block:first-child { padding-top: 0; }
.legal-block:last-child { border-bottom: none; }
.legal-block h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ad-primary);
  margin-bottom: 20px;
}
.legal-block h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ad-primary);
  margin: 24px 0 10px;
}
.legal-block p {
  font-size: 15px;
  color: var(--ad-grey-2);
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-block a { color: var(--primary); }
.legal-block a:hover { text-decoration: underline; }
.legal-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.legal-contact strong, .legal-contact span, .legal-contact a {
  font-size: 15px;
  color: var(--ad-primary);
}
.legal-contact a { color: var(--primary); }
.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
}
.legal-list li {
  font-size: 15px;
  color: var(--ad-grey-2);
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.legal-list li::before {
  content: '—';
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.legal-note {
  font-size: 13px;
  color: var(--ad-grey-3);
  line-height: 1.6;
  padding: 16px 20px;
  background: var(--ad-grey-1);
  border-left: 3px solid var(--primary);
  margin-top: 16px;
}

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}
@media (max-width: 575px) {
  .legal-section { padding: 120px 20px 60px; }
}

.service-intro { padding: 80px 0; }
.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}
.service-intro-grid h2 { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 20px; }
.service-intro-grid p { font-size: 16px; color: var(--ad-grey-2); line-height: 1.75; margin-bottom: 16px; }
.service-intro-grid .leistung-tags { margin: 24px 0; }
.service-stat-box {
  background: var(--ad-grey-1);
  border: 1px solid var(--ad-line);
  padding: 32px;
}
.service-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ad-line);
  border: 1px solid var(--ad-line);
  margin-top: 24px;
}
.service-stat {
  background: var(--ad-white);
  padding: 24px 20px;
  text-align: center;
}
.service-stat .stat-val {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.service-stat .stat-lbl {
  font-size: 12px;
  color: var(--ad-grey-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.service-includes { padding: 80px 0; background: var(--ad-grey-1); }
.service-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-include-card {
  background: var(--ad-white);
  padding: 32px 28px;
  border: 1px solid var(--ad-line);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.service-include-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(26,157,217,0.10);
  transform: translateY(-2px);
}
.service-include-card .sic-icon { font-size: 28px; margin-bottom: 16px; display: block; color: var(--primary); }
.service-include-card .sic-icon.material-icons { font-size: 28px; }
.service-include-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ad-primary);
  margin-bottom: 10px;
}
.service-include-card p {
  font-size: 14px;
  color: var(--ad-grey-2);
  line-height: 1.65;
}
.service-process { padding: 80px 0; }
.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  border: 1px solid var(--ad-line);
}
.service-process-step {
  padding: 36px 28px;
  border-right: 1px solid var(--ad-line);
}
.service-process-step:last-child { border-right: none; }
.service-process-step .step-num {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 16px;
}
.service-process-step h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ad-primary);
  margin-bottom: 12px;
}
.service-process-step p {
  font-size: 14px;
  color: var(--ad-grey-2);
  line-height: 1.65;
}
.service-process-step ul { padding-left: 0; margin-top: 10px; }
.service-process-step ul li {
  font-size: 13px;
  color: var(--ad-grey-2);
  line-height: 1.6;
  padding: 4px 0;
  display: flex;
  gap: 8px;
}
.service-process-step ul li::before { content: '—'; color: var(--primary); flex-shrink: 0; }
.service-faq { padding: 80px 0; background: var(--ad-grey-1); }
.service-faq-list {
  margin-top: 48px;
  max-width: 800px;
}
.service-faq-list details {
  border-bottom: 1px solid var(--ad-line);
}
.service-faq-list details:first-child { border-top: 1px solid var(--ad-line); }
.service-faq-list summary {
  font-size: 16px;
  font-weight: 700;
  color: var(--ad-primary);
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.service-faq-list summary::-webkit-details-marker { display: none; }
.service-faq-list summary:hover { color: var(--primary); }
.service-faq-list summary::after {
  content: '+';
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
  font-weight: 300;
  transition: transform 0.3s ease;
  display: inline-block;
}
.service-faq-list details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}
.service-faq-list details p {
  font-size: 15px;
  color: var(--ad-grey-2);
  line-height: 1.75;
  padding-bottom: 22px;
}
.service-price-band {
  background: var(--ad-primary);
  padding: 80px 0;
}
.service-price-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.service-price-inner h2 { color: var(--ad-white); font-size: clamp(28px, 3vw, 44px); margin-bottom: 16px; }
.service-price-inner p { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.7; }
.service-price-val {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--ad-white);
  white-space: nowrap;
}
.service-price-val span { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.5); display: block; margin-top: 4px; }
.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.service-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.service-breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.service-breadcrumb .sep { color: rgba(255,255,255,0.25); }
@media (max-width: 1024px) {
  .service-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-includes-grid { grid-template-columns: repeat(2, 1fr); }
  .service-process-grid { grid-template-columns: repeat(2, 1fr); }
  .service-process-step { border-right: 1px solid var(--ad-line); border-bottom: 1px solid var(--ad-line); }
  .service-process-step:nth-child(2n) { border-right: none; }
  .service-process-step:nth-last-child(-n+2) { border-bottom: none; }
  .service-price-inner { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 640px) {
  .service-includes-grid { grid-template-columns: 1fr; }
  .service-process-grid { grid-template-columns: 1fr; }
  .service-process-step { border-right: none !important; }
  .service-process-step:last-child { border-bottom: none; }
  .service-stat-row { grid-template-columns: 1fr 1fr; }
}

#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 40px));
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 900px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(32,40,45,0.16), 0 2px 8px rgba(32,40,45,0.08);
  border: 1px solid var(--ad-line);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
  opacity: 0;
}
#cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
}
.cookie-icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(26,157,217,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.cookie-icon-wrap .material-icons { font-size: 22px; }
.cookie-body {
  flex: 1;
  min-width: 0;
}
.cookie-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ad-primary);
  margin: 0 0 3px;
  line-height: 1.3;
}
.cookie-text {
  font-size: 12.5px;
  color: var(--ad-grey-3);
  line-height: 1.55;
  margin: 0;
}
.cookie-text a { color: var(--primary); text-decoration: underline; }
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  font-family: var(--ff-main);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.cookie-btn .material-icons { font-size: 15px; }
.cookie-btn-essential {
  background: transparent;
  color: var(--ad-grey-3);
  border-color: var(--ad-line);
}
.cookie-btn-essential:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.cookie-btn-settings {
  background: transparent;
  color: var(--ad-grey-3);
  border-color: var(--ad-line);
}
.cookie-btn-settings:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.cookie-btn-accept {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  font-weight: 700;
}
.cookie-btn-accept:hover { background: #1589c0; border-color: #1589c0; transform: translateY(-1px); }

#cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,28,36,0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#cookie-modal-overlay.visible {
  opacity: 1;
  visibility: visible;
}
#cookie-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(20,28,36,0.22);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
#cookie-modal-overlay.visible #cookie-modal {
  transform: translateY(0) scale(1);
}
.cm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 0;
}
.cm-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ad-primary);
  margin: 0;
}
.cm-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: #f4f6f8;
  color: var(--ad-grey-3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.cm-close:hover { background: var(--ad-line); color: var(--ad-primary); }
.cm-close .material-icons { font-size: 18px; }
.cm-body { padding: 16px 24px 0; }
.cm-desc {
  font-size: 13px;
  color: var(--ad-grey-3);
  line-height: 1.6;
  margin: 0 0 20px;
}
.cm-desc a { color: var(--primary); text-decoration: underline; }
.cm-category {
  border: 1.5px solid var(--ad-line);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 10px;
}
.cm-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cm-cat-info { flex: 1; min-width: 0; }
.cm-cat-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ad-primary);
  margin: 0 0 3px;
}
.cm-cat-desc {
  font-size: 12px;
  color: var(--ad-grey-3);
  line-height: 1.5;
  margin: 0;
}
.cm-always-on {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(26,157,217,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.cm-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.cm-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cm-toggle-track {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: #d1d5db;
  transition: background 0.25s;
}
.cm-toggle-track::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.cm-toggle input:checked + .cm-toggle-track { background: var(--primary); }
.cm-toggle input:checked + .cm-toggle-track::after { transform: translateX(20px); }
.cm-toggle input:focus-visible + .cm-toggle-track { outline: 2px solid var(--primary); outline-offset: 2px; }

.cm-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--ad-line);
  margin-top: 20px;
}
.cm-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  font-family: var(--ff-main);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.cm-btn-decline {
  background: transparent;
  color: var(--ad-grey-3);
  border-color: var(--ad-line);
}
.cm-btn-decline:hover { border-color: var(--ad-grey-3); color: var(--ad-primary); }
.cm-btn-save {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.cm-btn-save:hover { background: rgba(26,157,217,0.07); transform: translateY(-1px); }
.cm-btn-accept-all {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  font-weight: 700;
}
.cm-btn-accept-all:hover { background: #1589c0; border-color: #1589c0; transform: translateY(-1px); }

@media (max-width: 768px) {
  #cookie-banner { bottom: 16px; width: calc(100% - 32px); }
  .cookie-inner { flex-wrap: wrap; padding: 18px; gap: 14px; }
  .cookie-icon-wrap { display: none; }
  .cookie-body { min-width: 100%; order: 1; }
  .cookie-actions { order: 2; width: 100%; flex-wrap: wrap; }
  .cookie-btn { flex: 1; min-width: calc(50% - 4px); justify-content: center; }
  .cm-footer { flex-wrap: wrap; }
  .cm-btn { flex: 1; min-width: calc(50% - 4px); justify-content: center; }
}

.lp-success-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lp-success-modal[hidden] { display: none; }
.lp-success-modal.is-open { display: flex; }

.lp-success-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 26, 30, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.lp-success-modal-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 4px;
  max-width: 480px;
  width: 100%;
  padding: 48px 40px 40px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(20, 26, 30, 0.22);
  animation: lp-modal-in 0.28s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

@keyframes lp-modal-in {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.lp-success-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--ad-grey-1, #f2f4f6);
  color: var(--ad-primary, #20282d);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lp-success-modal-close:hover { background: var(--ad-line, #e0e4e8); }
.lp-success-modal-close .material-icons { font-size: 20px; }

.lp-success-modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(26, 157, 217, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.lp-success-modal-icon .material-icons {
  font-size: 40px;
  color: var(--primary, #1a9dd9);
}

.lp-success-modal-box h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ad-primary, #20282d);
  margin-bottom: 12px;
}
.lp-success-modal-box > p {
  font-size: 16px;
  color: var(--ad-grey-2, #6b7885);
  line-height: 1.7;
  margin-bottom: 28px;
}

.lp-success-modal-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  background: var(--ad-grey-1, #f7f8fa);
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 28px;
}
.lp-success-modal-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ad-primary, #20282d);
  font-weight: 500;
}
.lp-success-modal-step .material-icons {
  font-size: 18px;
  color: var(--primary, #1a9dd9);
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .lp-success-modal-box { padding: 40px 24px 28px; }
  .lp-success-modal-box h2 { font-size: 22px; }
}
