@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap");

:root {
  --apt-primary: #26323c;
  --apt-accent: #cab679;
  --apt-soft: #f7f4ef;
  --apt-mist: #eef1f3;
  --apt-card: #ffffff;
  --apt-radius: 20px;
  --apt-radius-lg: 28px;
  --apt-shadow: 0 22px 55px rgba(38, 50, 60, 0.16);
  --apt-shadow-soft: 0 14px 32px rgba(38, 50, 60, 0.12);
}

.apt-home {
  font-family: "Quicksand", "Segoe UI", sans-serif;
  color: var(--apt-primary);
  background: radial-gradient(circle at 18% 12%, rgba(202, 182, 121, 0.18), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(38, 50, 60, 0.08), transparent 45%),
    var(--apt-soft);
  padding-bottom: clamp(40px, 6vw, 90px);
  overflow-x: hidden;
}

.apt-home h1,
.apt-home h2,
.apt-home h3 {
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--apt-primary);
}

.apt-home p {
  margin: 0 0 14px;
  line-height: 1.7;
}

.apt-home a {
  color: inherit;
  text-decoration: none;
}

.apt-eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: rgba(38, 50, 60, 0.6);
}

.apt-section {
  max-width: 1680px;
  margin: clamp(28px, 6vw, 80px) auto 0;
  padding: 0 clamp(18px, 6vw, 56px);
}

.apt-panel {
  background: var(--apt-card);
  border-radius: var(--apt-radius-lg);
  box-shadow: var(--apt-shadow);
  padding: clamp(22px, 5vw, 48px);
}

.apt-section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(20px, 4vw, 32px);
}

.apt-media {
  margin: 0;
}

.apt-media__caption {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(38, 50, 60, 0.6);
  margin: auto;
  text-align: center;
}
.apt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.apt-btn--primary {
  background: var(--apt-accent);
  color: #1f2428;
  box-shadow: var(--apt-shadow-soft);
}

.apt-btn--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.apt-btn--outline {
  color: var(--apt-primary);
  border-color: var(--apt-accent);
  background: transparent;
}

.apt-btn:hover {
  transform: translateY(-1px);
}

.apt-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--apt-primary);
}

.apt-link::after {
  content: ">";
  font-size: 18px;
}
.apt-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: linear-gradient(145deg, #26323c 0%, #2f3c46 45%, #38464f 100%);
  color: #ffffff;
  overflow: hidden;
}

.apt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 10%, rgba(202, 182, 121, 0.25), transparent 42%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.12), transparent 40%);
  opacity: 0.9;
  pointer-events: none;
}

.apt-hero__inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px) clamp(22px, 6vw, 68px) clamp(80px, 12vw, 150px);
  position: relative;
  z-index: 1;
}

.apt-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 6vw, 56px);
  align-items: center;
}

.apt-hero__content h1 {
  color: #ffffff;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.15;
}

.apt-hero .apt-eyebrow,
.apt-hero .apt-media__caption {
  color: rgba(255, 255, 255, 0.7);
}

.apt-lead {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.9);
}

.apt-hero__logo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 16px;
}

.apt-hero__logo img {
  width: min(180px, 60vw);
  height: auto;
}

.apt-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 16px;
}

.apt-hero__trust {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
}

.apt-hero__trust-title {
  margin: 0;
  font-weight: 700;
  color: #ffffff;
}

.apt-hero__trust-text {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.apt-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.apt-hero__highlights span::before {
  content: "\2022";
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.55);
}

.apt-hero__highlights span:first-child::before {
  content: "";
  margin: 0;
}

.apt-hero__media {
  position: relative;
  border-radius: var(--apt-radius-lg);
  overflow: hidden;
  box-shadow: var(--apt-shadow);
}

.apt-hero__media img {
  width: 100%;
  height: clamp(320px, 55vw, 580px);
  object-fit: cover;
  display: block;
}

.apt-hero__cluster {
  margin-top: clamp(28px, 6vw, 48px);
}

.apt-hero__cluster h2 {
  color: #ffffff;
  margin-bottom: 18px;
}
.apt-city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.apt-city-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: var(--apt-radius);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(38, 50, 60, 0.1);
  box-shadow: var(--apt-shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
  color: var(--apt-primary);
}

.apt-city-card figure {
  margin: 0;
}

.apt-city-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.apt-city-card__body {
  padding: 12px 14px 16px;
  display: grid;
  gap: 6px;
}

.apt-city-card__eyebrow {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(38, 50, 60, 0.5);
}

.apt-city-card__cta {
  font-weight: 700;
  color: var(--apt-accent);
}

.apt-city-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(38, 50, 60, 0.18);
}

.apt-standorte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 20px;
}


@media (max-width: 900px) {
	.apt-standorte-grid {
  
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
.apt-slide blockquote {font-size: 80%;}
}


.apt-standort-card {
  background: #ffffff;
  border-radius: var(--apt-radius);
  border: 1px solid rgba(38, 50, 60, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--apt-shadow-soft);
}

.apt-standort-card img,
.apt-feature-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.apt-standort-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.apt-card__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.apt-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.apt-feature-card {
  background: #ffffff;
  border-radius: var(--apt-radius);
  border: 1px solid rgba(38, 50, 60, 0.1);
  overflow: hidden;
  box-shadow: var(--apt-shadow-soft);
  display: flex;
  flex-direction: column;
}

.apt-feature-card__media {
  display: block;
  margin: 0;
}

.apt-feature-card__media a {
  display: block;
}

.apt-feature-card__body {
  padding: 18px;
}

.apt-location {
  scroll-margin-top: 110px;
}

.apt-location__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 4vw, 36px);
  align-items: center;
}

.apt-location__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
}

.apt-location__links {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.apt-location__eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
  color: rgba(38, 50, 60, 0.6);
}

.apt-location__media img {
  width: 100%;
  height: clamp(240px, 40vw, 420px);
  object-fit: cover;
  border-radius: var(--apt-radius);
  display: block;
}

.apt-location--reverse .apt-location__content {
  order: 2;
}

.apt-location--reverse .apt-location__media {
  order: 1;
}

.apt-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.apt-checklist li {
  padding-left: 26px;
  position: relative;
}

.apt-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--apt-accent);
  box-shadow: inset 0 0 0 2px #ffffff;
}
.apt-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.apt-trust-card {
  background: var(--apt-mist);
  border-radius: var(--apt-radius);
  padding: 18px;
  border: 1px solid rgba(38, 50, 60, 0.1);
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.apt-trust-card img {
  width: 120px;
  height: auto;
}

.apt-slider {
  background: var(--apt-mist);
  border-radius: var(--apt-radius-lg);
  padding: 20px;
  border: 1px solid rgba(38, 50, 60, 0.1);
  position: relative;
  overflow: hidden;
}

.apt-slider__track {
  position: relative;
  min-height: 280px;
}

.apt-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
  display: grid;
  gap: 12px;
  align-content: start;
}

.apt-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.apt-testimonial {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.apt-testimonial img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.apt-slide blockquote {
  margin: 0;
  font-style: italic;
  color: var(--apt-primary);
  line-height: 1.6;
}

.apt-testimonial__name {
  margin: 0;
  font-weight: 700;
}

.apt-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.apt-slider__btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(38, 50, 60, 0.2);
  background: #ffffff;
  color: var(--apt-primary);
  font-size: 20px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.apt-slider__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.apt-dots {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 8px;
}

.apt-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: #c5cfd7;
  cursor: pointer;
  transition: width 160ms ease, background-color 160ms ease;
}

.apt-dots button.is-active {
  width: 24px;
  background: var(--apt-accent);
}
.apt-faq-list {
  display: grid;
  gap: 12px;
}

.apt-faq-item {
  border-radius: 14px;
  border: 1px solid rgba(38, 50, 60, 0.12);
  padding: 12px 16px;
  background: #ffffff;
}

.apt-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--apt-primary);
}

.apt-section--cta {
  max-width: 1680px;
}

.apt-panel--cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  background: var(--apt-primary);
  color: #ffffff;
}

.apt-panel--cta h2,
.apt-panel--cta p {
  color: #ffffff;
}

.apt-panel--cta .apt-btn--primary {
  background: #ffffff;
  color: var(--apt-primary);
}

.apt-panel--cta .apt-btn--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.apt-cta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.apt-cta-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-weight: 600;
  transition: background-color 180ms ease;
}

.apt-cta-chip:hover {
  background: rgba(255, 255, 255, 0.28);
}

.apt-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

[data-apt-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-apt-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .apt-hero__grid {
    grid-template-columns: 1fr;
  }

  .apt-hero__media {
    order: -1;
  }
}

@media (max-width: 720px) {
  .apt-hero__media img {
    height: clamp(280px, 80vw, 420px);
  }

  .apt-city-card img {
    height: 140px;
  }

  .apt-slider__track {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .apt-panel--cta {
    text-align: center;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-apt-reveal],
  .apt-btn,
  .apt-city-card,
  .apt-slider__btn,
  .apt-cta-chip {
    transition: none;
  }

  [data-apt-reveal] {
    opacity: 1;
    transform: none;
  }
}






.wd-page-content {margin-top:-40px;}
.whb-main-header {display:none!important;}
.wd-prefooter {display:none!important;}
.main-footer {display:none!important;}

.dfq-nav__panel a {color:#fff!important;}

.container   {max-width: 100vw!important;padding-inline: 0px!important;}
.wd-content-layout {
  padding-block: 2px!important;
}