* {
  box-sizing: border-box;
}

body {
  background-color: #fff2e0;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

@font-face {
  font-family: "PPNeueCorp";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/PPNeueCorp/PPNeueCorp-CompactMedium.woff2")
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/Roboto/roboto-v50-latin-regular.woff2")
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url("/assets/fonts/Roboto/roboto-v50-latin-300.woff2") format("woff2");
  font-display: swap;
}

.promo-popup {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.promo-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.promo-popup__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, #fff2e040, transparent 45%),
    rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.promo-popup.is-visible .promo-popup__backdrop {
  opacity: 1;
}

.promo-popup__card {
  position: relative;
  width: min(92vw, 560px);
  background: #fff2e0;
  color: #1a1a1d;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

.promo-popup.is-visible .promo-popup__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.promo-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 1px solid #1a1a1d1a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 2;
}

.promo-popup__close:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.promo-popup__close img {
  width: 18px;
  height: 18px;
}

.promo-popup__image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.promo-popup__content {
  padding: 1.8rem 2rem 2rem;
  display: grid;
  gap: 0.6rem;
}

.promo-popup__content h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "PPNeueCorp", sans-serif;
  color: #1a1a1d;
}

.promo-popup__content p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 200;
  color: #1a1a1d;
}

.promo-popup__cta {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  background: #1a1a1d;
  color: #fff2e0;
  border: none;
  border-radius: 12px;
  padding: 0.85rem 1.2rem;
  font-size: 1rem;
  font-weight: 200;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.promo-popup__cta img {
  width: 10px;
  height: auto;
  margin-top: 1px;
}

.promo-popup__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .promo-popup__card {
    width: 100%;
  }

  .promo-popup__image img {
    height: 200px;
  }

  .promo-popup__content {
    padding: 1.4rem 1.5rem 1.6rem;
  }

  .promo-popup__content h3 {
    font-size: 1.5rem;
  }

  .promo-popup__content p {
    font-size: 1rem;
  }
}

.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  padding: 1.2rem 2.2rem 1.2rem 2.2rem;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #fff2e080;
  transition:
    top 0.4s ease,
    background-color 0.3s ease;
}

.header-desktop.scrolled {
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.header-desktop nav {
  display: flex;
  justify-content: space-between;
}

.header-desktop .nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.2rem;
}

.header-desktop .nav-link {
  font-size: 1.1rem;
  font-weight: 100;
  color: #fff2e0;
  text-decoration: none;
}

.nav-btn {
  background-color: #34656d;
  display: flex;
  align-items: center;
  gap: 4px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 0.8rem 1.4rem;
  font-family: "Roboto", sans-serif !important;
  color: #fff2e0;
  font-size: 1rem;
  font-weight: 100 !important;
  text-decoration: none;
}

.nav-btn img {
  margin-top: 2px;
  width: 10px;
  height: auto;
}

.mobile-header {
  display: none;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  padding: 15px;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line {
  background-color: #fff2e0;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #fff2e0;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #fff2e0;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  display: flex;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.menu-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1.4rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 15%;
  left: 1.4rem;
}

.menu-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.7rem;
  font-weight: 200;
  text-decoration: none;
  padding: 0.4rem 0;
  color: #1a1a1d;
}

.menu-bottom {
  position: absolute;
  bottom: 2rem;
  left: 4%;
}

.vertical-bar {
  color: #1a1a1d;
}

.mobile-header {
  display: none;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  padding: 15px;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line {
  background-color: #fff2e0;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #fff2e0;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #fff2e0;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  display: flex;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.menu-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1.4rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 15%;
  left: 1.4rem;
}

.menu-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.7rem;
  font-weight: 200;
  text-decoration: none;
  padding: 0.4rem 0;
  color: #1a1a1d;
}

.menu-bottom {
  position: absolute;
  bottom: 2rem;
  left: 4%;
}

.vertical-bar {
  color: #1a1a1d;
}

.dc-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #1a1a1d;
}

.dc-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 28%;
  filter: brightness(58%);
}

.dc-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(26, 26, 29, 0.82) 0%,
      rgba(26, 26, 29, 0.45) 42%,
      rgba(26, 26, 29, 0.12) 100%
    ),
    linear-gradient(0deg, rgba(26, 26, 29, 0.45) 0%, rgba(26, 26, 29, 0) 45%);
  z-index: 1;
}

.dc-hero__content {
  position: absolute;
  left: 6rem;
  right: 6rem;
  bottom: 17%;
  z-index: 2;
  max-width: 760px;
}

.dc-kicker,
.dc-section-label {
  display: block;
  margin: 0 0 0.75rem 0;
  font-family: "Roboto", sans-serif !important;
  font-size: 0.95rem;
  font-weight: 200;
  color: #34656d;
  text-transform: uppercase;
}

.dc-kicker {
  color: #fff2e0;
}

.dc-process .dc-section-label,
.dc-middle-image .dc-section-label,
.dc-final-cta .dc-section-label {
  color: #fff2e0;
}

.dc-hero h1 {
  width: 100%;
  margin: 0;
  color: #fff2e0;
  font-family: "PPNeueCorp", sans-serif;
  font-size: clamp(3rem, 6vw, 6.8rem);
  line-height: 0.92;
  font-weight: 500;
}

.dc-hero__content p:not(.dc-kicker) {
  width: 68%;
  margin: 1.4rem 0 0 0;
  color: #fff2e0;
  font-size: 1.2rem;
  font-weight: 100;
}

.dc-hero__buttons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.dc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 4px;
  padding: 0.85rem 1.4rem;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 200;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.dc-btn:hover {
  transform: translateY(-2px);
}

.dc-btn img,
.dc-final-cta__button img {
  width: auto;
  height: auto;
  margin: 0;
  filter: none;
  transform: none;
  transition: none;
}

.dc-btn:hover img,
.dc-btn--primary:hover img,
.dc-btn--secondary:hover img,
.dc-final-cta__button:hover img {
  filter: none;
  transform: none;
}

.dc-btn--primary {
  background-color: #34656d;
  color: #fff2e0;
  border: 1px solid #34656d;
}

.dc-btn--primary:hover {
  background-color: #fff2e0;
  border-color: #fff2e0;
  color: #1a1a1d;
}

.dc-btn--secondary {
  background-color: transparent;
  color: #fff2e0;
  border: 1px solid #fff2e0;
}

.dc-btn--secondary:hover {
  background-color: #fff2e0;
  color: #1a1a1d;
}

.dc-scroll-note {
  position: absolute;
  right: 6rem;
  bottom: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dc-scroll-note p {
  margin: 0;
  color: #fff2e0;
  font-size: 0.9rem;
  font-weight: 100;
}

.dc-scroll-note img {
  width: 10px;
  height: auto;
}

.dc-intro,
.dc-benefits,
.dc-prices {
  margin: 6rem;
}

.dc-line {
  width: 100%;
  height: 1px;
  background-color: rgba(26, 26, 29, 0.65);
  margin-bottom: 2rem;
}

.dc-intro__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: start;
}

.dc-intro h2,
.dc-benefits h2,
.dc-image-text h2,
.dc-process h2,
.dc-middle-image h2,
.dc-prices h2,
.dc-packages h2,
.dc-final-cta h2 {
  margin: 0;
  color: #1a1a1d;
  font-family: "PPNeueCorp", sans-serif;
  font-size: 2.2rem;
  line-height: 2.2rem;
  font-weight: 500;
}

.dc-intro__text {
  display: grid;
  gap: 1.2rem;
}

.dc-intro__text p,
.dc-benefits__head p,
.dc-image-text__content p,
.dc-prices__head p,
.dc-packages__head p {
  margin: 0;
  color: #1a1a1d;
  font-size: 1.2rem;
  font-weight: 100;
}

.dc-benefits {
  margin-top: 6rem;
  margin-bottom: 7rem;
}

.dc-benefits__head {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.dc-benefits__head p {
  margin-top: 1rem;
}

.dc-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(26, 26, 29, 0.3);
  border-left: 1px solid rgba(26, 26, 29, 0.3);
}

.dc-benefit-card {
  min-height: 245px;
  padding: 1.45rem 1.5rem 1.35rem;
  border-right: 1px solid rgba(26, 26, 29, 0.3);
  border-bottom: 1px solid rgba(26, 26, 29, 0.3);
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.dc-benefit-card span,
.dc-process article span {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 200;
  color: #34656d;
}

.dc-benefit-card h3,
.dc-process article h3,
.dc-price-item h3,
.dc-package-item h3 {
  margin: 0;
  color: #1a1a1d;
  font-family: "PPNeueCorp", sans-serif;
  font-size: 1.55rem;
  line-height: 1.5rem;
  font-weight: 500;
}

.dc-benefit-card p {
  margin: 1.1rem 0 0 0;
  color: #1a1a1d;
  font-size: 1.1rem;
  font-weight: 100;
}

.dc-image-text {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4.5rem;
  align-items: center;
  margin: 7rem 6rem;
}

.dc-image-text__image {
  height: 640px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.22);
}

.dc-image-text__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 72%;
}

.dc-image-text__content p {
  margin-top: 1rem;
}

.dc-check-list {
  display: grid;
  gap: 0;
  margin: 2rem 0 0 0;
  padding: 0;
  border-top: 1px solid rgba(26, 26, 29, 0.25);
}

.dc-check-list li {
  list-style: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26, 26, 29, 0.25);
  color: #1a1a1d;
  font-size: 1.12rem;
  font-weight: 100;
}

.dc-check-list li::before {
  content: "✓";
  color: #34656d;
  margin-right: 0.7rem;
}

.dc-process {
  background-color: #2f5755;
  margin: 0;
  padding: 6.5rem 6rem 6rem 6rem;
  border-radius: 45px 45px 0 0;
}

.dc-process .dc-section-label,
.dc-process h2,
.dc-process article h3,
.dc-process article p,
.dc-process article span {
  color: #fff2e0;
}

.dc-process__head {
  max-width: 760px;
  margin-bottom: 2.6rem;
}

.dc-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 242, 224, 0.42);
  border-left: 1px solid rgba(255, 242, 224, 0.42);
}

.dc-process article {
  min-height: 255px;
  padding: 1.45rem 1.5rem 1.35rem;
  border-right: 1px solid rgba(255, 242, 224, 0.42);
  border-bottom: 1px solid rgba(255, 242, 224, 0.42);
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.dc-process article p {
  margin: 1.1rem 0 0 0;
  font-size: 1.1rem;
  font-weight: 100;
}

.dc-middle-image {
  position: relative;
  height: 95vh;
  overflow: hidden;
  background-color: #1a1a1d;
  margin: 0;
  padding: 0;
}

.dc-middle-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  filter: brightness(52%);
}

.dc-middle-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(26, 26, 29, 0.72) 0%,
      rgba(26, 26, 29, 0.32) 52%,
      rgba(26, 26, 29, 0.12) 100%
    ),
    linear-gradient(0deg, rgba(26, 26, 29, 0.5) 0%, rgba(26, 26, 29, 0) 55%);
  pointer-events: none;
}

.dc-middle-image__content {
  position: absolute;
  left: 6rem;
  bottom: 6rem;
  z-index: 2;
  max-width: 680px;
}

.dc-middle-image .dc-section-label,
.dc-middle-image h2,
.dc-middle-image__content p {
  color: #fff2e0;
}

.dc-middle-image__content p {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 100;
}

.dc-prices {
  margin-top: 7rem;
}

.dc-prices__head {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.dc-price-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
  border-top: 1px solid rgba(26, 26, 29, 0.32);
}

.dc-price-item {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(26, 26, 29, 0.32);
}

.dc-price-item p,
.dc-package-item p {
  margin: 1rem 0 0.8rem 0;
  color: #1a1a1d;
  font-size: 1.1rem;
  font-weight: 100;
}

.dc-price-item a,
.dc-package-item a {
  color: #1a1a1d;
  font-size: 1.05rem;
  font-weight: 100;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.dc-price-item strong,
.dc-package-item strong {
  color: #1a1a1d;
  font-size: 1.35rem;
  font-weight: 300;
  white-space: nowrap;
}

.dc-packages {
  margin: 8rem 2.5rem;
}

.dc-packages__inner {
  border: 1px solid rgba(26, 26, 29, 0.25);
  border-radius: 24px;
  padding: 3rem 2rem;
}

.dc-packages__head {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.dc-packages__head p {
  margin-top: 1rem;
}

.dc-package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
}

.dc-package-item {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(26, 26, 29, 0.25);
}

.faq-wrapper {
  width: 100%;
}

.faq-section {
  margin: 6rem;
}

.faq-section h2 {
  color: #1a1a1d;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin: 0;
  width: 70%;
  font-family: "PPNeueCorp", sans-serif;
}

.faq-section p {
  font-size: 1.2rem;
  font-weight: 100;
  color: #1a1a1d;
  width: 70%;
  margin-bottom: 0;
}

.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1a1a1d;
  width: 100%;
  cursor: pointer;
  gap: 2rem;
}

.faq-wrapper .faq-item:first-of-type {
  border-top: 1px solid #1a1a1d;
  margin-top: 2rem;
}

.faq-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 2px;
  flex-shrink: 0;
}

.faq-icon img {
  width: 20px;
  height: 20px;
  transition: transform 0.35s ease;
  transform-origin: center;
}

.faq-icon img.rotated {
  transform: rotate(405deg);
}

.faq-item h4 {
  color: #1a1a1d;
  font-family: "Roboto", sans-serif !important;
  font-weight: 200;
  font-size: 1.6rem;
  line-height: 1.3;
  margin: 3rem 0;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.215, 0.61, 0.355, 1),
    opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}

.faq-content.open {
  opacity: 1;
}

.faq-content p {
  color: #1a1a1d;
  font-weight: 200;
  font-size: 1.2rem;
  padding: 0;
  margin: 1rem 0 2rem 0;
}

.faq-content a {
  color: #34656d;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-size: 1.2rem;
  font-weight: 200;
}

.faq-item[aria-expanded="true"] {
  border-bottom-color: transparent;
}

.faq-item[aria-expanded="true"] + .faq-content {
  border-bottom: 1px solid #1a1a1d;
}

.faq-btn-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 4rem;
}

.faq-btn-layout .cta-secondary {
  color: #1a1a1d;
}

.faq-btn-layout .cta-secondary:hover {
  background-color: #1a1a1d;
  border-color: #1a1a1d;
  color: #fff2e0;
}

.dc-final-cta {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  background-color: #2f5755;
  border-radius: 28px;
  padding: 3.2rem;
  margin: 6rem;
  overflow: hidden;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.18);
}

.dc-final-cta__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.dc-final-cta .dc-section-label {
  color: #fff2e0;
}

.dc-final-cta h2 {
  color: #fff2e0;
  font-family: "PPNeueCorp", sans-serif;
  font-size: 2.2rem;
  line-height: 2.2rem;
  font-weight: 500;
  margin: 0;
}

.dc-final-cta p {
  color: #fff2e0;
  font-size: 1.2rem;
  font-weight: 100;
  margin: 1rem 0 0 0;
}

.dc-final-cta__button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background-color: rgba(255, 242, 224, 0.12);
  color: #fff2e0;
  border: 1px solid rgba(255, 242, 224, 0.22);
  border-radius: 8px;
  padding: 0.95rem 1.45rem;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 200;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.dc-final-cta__button:hover {
  background-color: #fff2e0;
  border-color: #fff2e0;
  color: #1a1a1d;
  transform: translateY(-2px);
}

.dc-final-cta__leaf {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.16;
}

.dc-final-cta__leaf img {
  display: block;
  width: 100%;
  height: auto;
}

.dc-final-cta__leaf--one {
  right: 5rem;
  top: -4.5rem;
  width: 430px;
  transform: rotate(-8deg);
}

.dc-final-cta__leaf--two {
  left: 2rem;
  bottom: -3.5rem;
  width: 230px;
  transform: rotate(12deg);
  opacity: 0.12;
}

@media (max-width: 1024px) {
  .dc-hero__content {
    left: 2rem;
    right: 2rem;
    bottom: 13%;
  }

  .dc-hero__content p:not(.dc-kicker) {
    width: 100%;
  }

  .dc-scroll-note {
    right: 2rem;
  }

  .dc-intro,
  .dc-benefits,
  .dc-prices,
  .faq-section,
  .dc-final-cta {
    margin: 5rem 2rem;
  }

  .dc-intro__grid,
  .dc-image-text,
  .dc-price-list,
  .dc-package-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dc-benefits__grid,
  .dc-process__grid {
    grid-template-columns: 1fr 1fr;
  }

  .dc-image-text {
    margin: 5rem 2rem;
  }

  .dc-image-text__image {
    height: 520px;
  }

  .dc-process {
    padding: 5rem 2rem;
  }

  .dc-middle-image__content {
    left: 2rem;
    right: 2rem;
    bottom: 4rem;
  }

  .dc-packages {
    margin: 5rem 2rem;
  }

  .faq-section h2,
  .faq-section p {
    width: 100%;
  }

  .dc-final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .dc-final-cta__leaf--one {
    right: -3rem;
    top: -3rem;
    width: 340px;
  }

  .dc-final-cta__leaf--two {
    left: -2rem;
    bottom: -3rem;
    width: 190px;
  }
}

@media (max-width: 768px) {
  .dc-hero {
    height: 92vh;
  }

  .dc-hero__media img {
    object-position: 68% 28%;
  }

  .dc-hero__overlay {
    background:
      linear-gradient(
        0deg,
        rgba(26, 26, 29, 0.82) 0%,
        rgba(26, 26, 29, 0.38) 70%
      ),
      rgba(26, 26, 29, 0.2);
  }

  .dc-hero__content {
    left: 1rem;
    right: 1rem;
    bottom: 10%;
  }

  .dc-hero h1 {
    font-size: 2.7rem;
    line-height: 2.55rem;
  }

  .dc-hero__content p:not(.dc-kicker) {
    font-size: 1.1rem;
  }

  .dc-hero__buttons {
    align-items: stretch;
  }

  .dc-btn {
    width: 100%;
  }

  .dc-scroll-note {
    display: none;
  }

  .dc-intro,
  .dc-benefits,
  .dc-prices,
  .faq-section,
  .dc-final-cta {
    margin: 4rem 1rem;
  }

  .dc-intro h2,
  .dc-benefits h2,
  .dc-image-text h2,
  .dc-process h2,
  .dc-middle-image h2,
  .dc-prices h2,
  .dc-packages h2,
  .dc-final-cta h2 {
    font-size: 1.8rem;
    line-height: 1.8rem;
  }

  .dc-intro__text p,
  .dc-benefits__head p,
  .dc-image-text__content p,
  .dc-prices__head p,
  .dc-packages__head p {
    font-size: 1.1rem;
  }

  .dc-benefits__grid,
  .dc-process__grid {
    grid-template-columns: 1fr;
  }

  .dc-benefit-card,
  .dc-process article {
    min-height: auto;
    gap: 2.2rem;
  }

  .dc-image-text {
    margin: 4rem 1rem;
  }

  .dc-image-text__image {
    height: 430px;
    border-radius: 16px;
  }

  .dc-process {
    padding: 4rem 1rem;
    border-radius: 18px 18px 0 0;
  }

  .dc-process article p {
    font-size: 1.1rem;
  }

  .dc-middle-image {
    height: 85vh;
  }

  .dc-middle-image img {
    object-position: 50% 24%;
  }

  .dc-middle-image__content {
    left: 1rem;
    right: 1rem;
    bottom: 3rem;
  }

  .dc-middle-image__content p {
    font-size: 1.1rem;
  }

  .dc-price-item,
  .dc-package-item {
    gap: 1rem;
  }

  .dc-price-item strong,
  .dc-package-item strong {
    font-size: 1.2rem;
  }

  .dc-packages {
    margin: 4rem 1rem;
  }

  .dc-packages__inner {
    padding: 2rem 1rem;
    border-radius: 16px;
  }

  .faq-section h2 {
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }

  .faq-section p {
    width: 100%;
    font-size: 1.1rem;
  }

  .faq-item h4 {
    font-size: 1.35rem;
    margin: 2rem 0;
  }

  .faq-content p,
  .faq-content a {
    font-size: 1.15rem;
  }

  .faq-icon {
    width: 38px;
    height: 38px;
  }

  .faq-icon img {
    width: 18px;
    height: 18px;
  }

  .faq-btn-layout {
    margin-top: 2rem;
  }

  .dc-final-cta {
    padding: 2.2rem 1.3rem;
    border-radius: 18px;
    gap: 2rem;
  }

  .dc-final-cta p {
    font-size: 1.1rem;
  }

  .dc-final-cta__button {
    width: 100%;
  }

  .dc-final-cta__leaf--one {
    right: -7rem;
    top: -2.5rem;
    width: 300px;
  }

  .dc-final-cta__leaf--two {
    left: -4rem;
    bottom: -3rem;
    width: 180px;
  }
}

.dc-combinations {
  margin: 7rem 6rem;
}

.dc-combinations__head {
  max-width: 860px;
  margin-bottom: 2.5rem;
}

.dc-combinations__head h2 {
  color: #1a1a1d;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 2.2rem;
  margin: 0;
  font-family: "PPNeueCorp", sans-serif;
}

.dc-combinations__head p {
  color: #1a1a1d;
  font-size: 1.2rem;
  font-weight: 100;
  margin-top: 1rem;
}

.dc-combinations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(26, 26, 29, 0.3);
  border-left: 1px solid rgba(26, 26, 29, 0.3);
}

.dc-combination-card {
  padding: 2rem;
  border-right: 1px solid rgba(26, 26, 29, 0.3);
  border-bottom: 1px solid rgba(26, 26, 29, 0.3);
}

.dc-combination-card h3 {
  color: #1a1a1d;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6rem;
  font-family: "PPNeueCorp", sans-serif;
  margin: 0;
}

.dc-combination-card p:not(.dc-section-label) {
  color: #1a1a1d;
  font-size: 1.2rem;
  font-weight: 100;
  margin-top: 1rem;
}

.dc-combination-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 1.2rem;
  color: #34656d;
  font-size: 1.2rem;
  font-weight: 200;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .dc-combinations {
    margin: 5rem 2rem;
  }

  .dc-combinations__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dc-combinations {
    margin: 4rem 1rem;
  }

  .dc-combinations__head h2 {
    font-size: 1.8rem;
    line-height: 1.8rem;
  }

  .dc-combinations__head p,
  .dc-combination-card p:not(.dc-section-label),
  .dc-combination-card a {
    font-size: 1.1rem;
  }

  .dc-combination-card {
    padding: 1.4rem;
  }

  .dc-combination-card h3 {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
}

.microneedling-hero-img {
  object-position: 50% 85% !important;
}

.microneedling-beratung-img {
  object-position: 50% 20% !important;
}

.fruchtsaeure-middle-img {
  object-position: 50% 50% !important;
}

.dc-process__grid--three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .dc-process__grid--three {
    grid-template-columns: 1fr;
  }
}

footer {
  background-color: #1a1a1d;
  position: relative;
  padding: 2rem 6rem 0 6rem;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/icons/logo-footer.svg") no-repeat;
  background-size: min(85vmin, 900px);
  z-index: 0;
  pointer-events: none;
}

.footer-layout {
  position: relative;
  z-index: 1;
  width: 80%;
  display: flex;
  justify-content: space-between;
}

.footer-layout h4 {
  font-family: "PPNeueCorp", sans-serif;
  color: #585861;
  font-weight: 500;
  font-size: 1.6rem;
  margin: 0;
}

.footer-layout ul {
  padding: 0;
  margin: 0;
}

.footer-layout ul li {
  list-style: none;
  line-height: 1.3rem;
}

.footer-layout ul li a {
  color: #fff2e0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 100;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
}

.social-link {
  margin-bottom: 0.5rem;
}

.footer-bottom-layout {
  position: relative;
  z-index: 1;
  border-top: 1px solid #fff2e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #fff2e0;
  font-weight: 100;
  font-size: 0.9rem;
  margin: 0.8rem 0;
}

.footer-bottom a {
  color: #fff2e0;
  font-weight: 100;
  font-size: 0.9rem;
  margin: 0.8rem 0;
  text-decoration: none;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .hero-text {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 0;
  }
  h1 {
    font-size: 2rem;
    line-height: 2rem;
    width: 100%;
  }
  .hero-text p {
    width: 100%;
    font-size: 1.1rem;
  }
  .quick-navigation {
    left: 1rem;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }
  .lightbox-close {
    right: 0.5rem;
  }
  .lightbox-nav span {
    padding: 0;
  }
  .newsletter-section {
    margin: 6rem 1rem;
  }
  .newsletter-wrapper {
    padding: 2rem 1rem;
    flex-direction: column;
    border-radius: 0;
  }
  .newsletter-text {
    width: 100%;
  }
  .layout_form {
    margin-top: 1.2rem;
  }
  .newsletter-img {
    display: none;
  }
  .newsletter-img-second {
    left: -1rem;
    top: -0.8rem;
  }
  .newsletter-submit {
    padding: 0 1.2rem;
  }
  footer {
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-bottom-layout {
    flex-direction: column;
    padding-top: 1rem;
  }
  .footer-bottom p {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .hero-text {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 0;
  }
  h1 {
    font-size: 2rem;
    line-height: 2rem;
    width: 100%;
  }
  .hero-text p {
    width: 100%;
    font-size: 1.1rem;
  }
  .quick-navigation {
    left: 1rem;
  }

  .gallery-layout {
    grid-template-columns: 1fr 1fr;
  }
  .lightbox-close {
    right: 0.5rem;
  }
  .lightbox-nav span {
    padding: 0;
  }
  .newsletter-section {
    margin: 6rem 1rem;
  }
  .newsletter-wrapper {
    padding: 2rem 1rem;
    flex-direction: column;
    border-radius: 0;
  }
  .newsletter-text {
    width: 70%;
  }
  .layout_form {
    margin-top: 1.2rem;
  }
  .newsletter-img {
    right: -2rem;
  }
  .newsletter-img img {
    width: 300px;
  }
  .newsletter-img-second {
    left: -1rem;
    top: -0.8rem;
  }
  .newsletter-submit {
    padding: 0 1.2rem;
  }
  footer {
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-bottom-layout {
    flex-direction: column;
    padding-top: 1rem;
  }
  .footer-bottom p {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .img-container {
    height: 90vh;
  }
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .mobile-header nav {
    width: 100%;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  .hero-text {
    left: 5rem;
    right: 5rem;
    bottom: 2rem;
  }
  h1 {
    font-size: 3.4rem;
    line-height: 3.4rem;
    width: 50%;
  }
  .hero-text p {
    width: 50%;
    margin-top: 1rem;
  }

  footer {
    padding: 2rem 5rem 0 5rem;
  }
}
