@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../assets/fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --dark: #1f1f1f;
  --dark-2: #222;
  --border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --accent: #e51b23;
}

.section-title {
  margin: 0 0 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;

  font-size: clamp(1.65rem, 5vw, 2.35rem);
}

.section-title .accent {
  color: var(--accent);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #111;

  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

body.menu-open {
  overflow: hidden;
}

.header {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  color: var(--text);
}

.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--text);
}

.logo {
  height: 50px;
  width: auto;
  display: block;
}

.brand-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.burger {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;

  width: 50px;
  height: 26px;
}

.bar {
  height: 2px;
  background: var(--text);
}

.bar:nth-child(1) {
  width: 26px;
}

.bar:nth-child(2) {
  width: 18px;
}

.bar:nth-child(3) {
  width: 14px;
}

@media (max-width: 360px) {
  .brand-text {
    display: none;
  }
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100vw;

  background: var(--dark);
  color: var(--text);

  transform: translateX(-100%);
  transition: transform 320ms cubic-bezier(.25, .8, .25, 1);
  z-index: 10;

  padding: 1.5rem 1.25rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

body.menu-open .drawer {
  transform: translateX(0);
}

.close {
  position: absolute;
  top: 14px;
  right: 14px;

  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.drawer-top {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}

.drawer-logo {
  height: 84px;
  width: auto;
  display: block;
}

.drawer-menu {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.drawer-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;

  position: relative;
  padding: 0.25rem 0.25rem;
}

.drawer-menu a:hover,
.drawer-menu a:focus-visible {
  color: var(--accent);
  outline: none;
}

.drawer-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;

  height: 2px;
  background: var(--accent);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 650ms ease;
}

.drawer-menu a:hover::after,
.drawer-menu a:focus-visible::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {

  .drawer,
  .drawer-menu a::after {
    transition: none;
  }
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .drawer {
    display: none;
  }

  .nav {
    padding: 1.25rem 0;
    min-height: 88px;
  }

  .logo {
    height: 56px;
  }

  .brand-text {
    font-size: 1.125rem;
    font-weight: 700;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    position: relative;
    padding: 0.5rem 0;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible {
    color: var(--accent);
    outline: none;
  }

  .nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 250ms ease;
  }

  .nav-menu a:hover::after,
  .nav-menu a:focus-visible::after {
    transform: scaleX(1);
  }
}

@media (min-width: 1200px) {
  .nav {
    min-height: 96px;
    padding: 1.4rem 0;
  }

  .logo {
    height: 62px;
  }

  .brand-text {
    font-size: 1.2rem;
  }

  .nav-menu a {
    font-size: 1.1rem;
    padding: 0.6rem 0;
  }
}

/* =========================
  HERO
  ========================= 
    =========================
      =========================
        =========================
          =========================
            =========================
              =========================
                =========================
                  =========================
                    =========================
                      =========================*/
main {
  flex: 1;
}

.container {
  width: min(1100px, 100%);
  margin-inline: auto;
  padding-inline: 1rem;
}

/* TODO */
.hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .62) 45%, rgba(0, 0, 0, .18) 100%),
    url("../assets/hero-image.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  color: var(--text);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;

  text-align: center;
  align-items: stretch;
}

.hero-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.15;

  font-size: clamp(1.6rem, 4.6vw, 2.35rem);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  margin: 0;
  font-weight: 700;
  line-height: 1.35;
  font-size: clamp(1rem, 3.7vw, 1.25rem);
}

.hero-accent {
  color: var(--accent);
}

.btn {
  text-decoration: none;
  border: 0;
  cursor: pointer;
  display: block;

  border-radius: 0.85rem;
  padding: 0.95rem 1.25rem;
  font-weight: 700;
  font-size: 1.05rem;

  width: 100%;
  text-align: center;
}

.btn-primary {
  background: #ff3b49;
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent);
}

@media (min-width: 768px) {
  .hero {
    min-height: 70vh;
  }

  .hero-inner {
    gap: 1.25rem;

    text-align: left;
    align-items: flex-start;
  }

  .btn {
    width: fit-content;
    padding: 1.05rem 1.6rem;
  }
}

@media (min-width: 992px) {
  .btn {
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .hero .container, .header .container, footer .container {
    width: min(1400px, 100%);
  }
}

@media (min-width: 1600px) {
  .hero .container, .header .container, footer .container {
    width: min(1600px, 100%);
  }
}

/* =========================
  BENEFITS
  ========================= 
    =========================
      =========================
        =========================
          =========================
            =========================
              =========================
                =========================
                  =========================
                    =========================
                      =========================*/

.benefits {
  padding: 3rem 0 0 0;
}

.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefits-item {
  position: relative;
  padding-left: 3rem;

  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.3;
}

.benefits-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  transform: translateY(-50%);

  width: 22px;
  height: 22px;
  border-radius: 100px;
  border: 2px solid var(--accent);
}

.benefits-item::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 0.72em;
  transform: translate(-50%, -50%);

  width: 11px;
  height: 11px;
  border-radius: 100px;
  background: var(--accent);
}

.benefits-media {
  width: 130vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.benefits-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 992px) {
  .benefits-inner {
    --arcSize: 980px;
    --arcTop: 60px;

    --imgW: 1400px;
    --imgTop: 85px;
    --imgRatio: 0.5314;

    position: relative;

    min-height: calc(var(--imgTop) + (var(--imgW) * var(--imgRatio)));
  }

  .benefits-media {
    position: absolute;
    left: 50%;
    top: var(--imgTop);
    transform: translateX(-50%);
    width: var(--imgW);
    z-index: 2;
  }

  .benefits-img {
    width: 100%;
    height: auto;
    display: block;
  }

  .benefits-inner::before {
    content: "";
    position: absolute;
    left: 50%;
    top: var(--arcTop);
    transform: translateX(-50%);
    width: var(--arcSize);
    height: var(--arcSize);
    border-radius: 50%;

    border: 2px solid rgba(229, 27, 35, 0.35);
    border-bottom: 0;

    clip-path: inset(0 0 41% 0);
  }

  .benefits-list {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    z-index: 3;
  }

  .benefits-item {
    position: absolute;
    padding: 0.45rem 0.85rem;
    background: #fff;
    border-radius: 100px;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 700;
  }

  .benefits-item::before,
  .benefits-item::after {
    display: none;
  }

  .benefits-item:nth-child(1) {
    left: 180px;
    top: 110px;
    text-align: right;
  }

  .benefits-item:nth-child(2) {
    left: -15px;
    top: 300px;
    text-align: right;
  }

  .benefits-item:nth-child(3) {
    left: -15px;
    top: 520px;
    text-align: right;
  }

  .benefits-item:nth-child(4) {
    right: 100px;
    top: 110px;
    text-align: left;
  }

  .benefits-item:nth-child(5) {
    right: 20px;
    top: 300px;
    text-align: left;
  }

  .benefits-item:nth-child(6) {
    right: -95px;
    top: 520px;
    text-align: left;
  }
}

@media (min-width: 1920px) {
  .benefits-inner {
    --arcSize: 1320px;
    --arcTop: 40px;

    --imgW: 1920px;

    min-height: calc(var(--imgTop) + (var(--imgW) * var(--imgRatio)));
  }

  .benefits-item:nth-child(1) {
    left: 30px;
    top: 140px;
  }

  .benefits-item:nth-child(2) {
    left: -185px;
    top: 380px;
  }

  .benefits-item:nth-child(3) {
    left: -195px;
    top: 650px;
  }

  .benefits-item:nth-child(4) {
    right: -55px;
    top: 140px;
  }

  .benefits-item:nth-child(5) {
    right: -155px;
    top: 380px;
  }

  .benefits-item:nth-child(6) {
    right: -300px;
    top: 650px;
  }

  .benefits-item {
    font-size: 1.45rem;
  }
}

/* =========================
  WHY (mobile first)
  ========================= 
    ========================= 
    ========================= 
      ========================= 
      ========================= 
        ========================= 
        ========================= 
          ========================= */
.why {
  padding: 3rem 0;
  color: #fff;
  margin-top: -1px;

  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, .55) 0%,
      rgba(0, 0, 0, .40) 25%,
      rgba(0, 0, 0, .25) 50%,
      rgba(0, 0, 0, .15) 100%),
    url("../assets/why-bg.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-item {
  position: relative;
  overflow: hidden;
  min-height: 150px;

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* TODO */
.why-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, .78) 0%,
      rgba(0, 0, 0, .60) 55%,
      rgba(0, 0, 0, .55) 100%);
}

.why-content {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  gap: 1rem;

  text-align: left;
}

.why-number {
  font-weight: 700;
  font-size: clamp(3.5rem, 9vw, 6.2rem);

  color: #ff3b49;
}

.why-text {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 1.15rem);
}

.why-accent {
  color: var(--accent);
}

.why-item:nth-child(1) {
  background-image: url("../assets/why-1.webp");
}

.why-item:nth-child(2) {
  background-image: url("../assets/why-2.webp");
}

.why-item:nth-child(3) {
  background-image: url("../assets/why-3.webp");
}

.why-item:nth-child(4) {
  background-image: url("../assets/why-4.webp");
}

.why-item:nth-child(5) {
  background-image: url("../assets/why-5.webp");
}

@media (max-width: 360px) {
  .why-number {
    font-size: 3.2rem;
  }
}

@media (min-width: 768px) {
  .why-item {
    min-height: 180px;
  }
}

@media (min-width: 1200px) {
  .why-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(10px, 1.2vw, 18px) clamp(28px, 3.5vw, 60px);

    max-width: 1500px;
    margin-inline: auto;
    padding: clamp(24px, 3vw, 56px) 1rem 0;
  }

  .why-item {
    width: clamp(340px, 26vw, 560px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
  }

  .why-item:nth-child(-n+3) {
    position: relative;
    z-index: 2;
  }

  .why-item:nth-child(n+4) {
    position: relative;
    z-index: 1;
  }

  .why-item:nth-child(4),
  .why-item:nth-child(5) {
    margin-top: clamp(-115px, -6.8vw, -50px);
  }

  .why-item::after {
    background: radial-gradient(circle at 30% 35%,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.70) 55%,
        rgba(0, 0, 0, 0.88) 100%);
  }

  .why-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(14px, 1.4vw, 22px);
  }

  .why-number {
    font-size: clamp(5.5rem, 5vw, 7.5rem);
    font-weight: 700;
    text-shadow: 0 10px 25px rgba(0, 0, 0, .65);
  }

  .why-text {
    max-width: 280px;
    font-size: clamp(1.2rem, 1.1vw, 1.5rem);
    line-height: 1.35;
    font-weight: 700;
  }
}

@media (min-width: 1600px) {
  .why-item {
    width: 416px;
  }
}


/* =========================
  OFFERS / ANGEBOTE
  ========================= 
    =========================
      =========================
        =========================
          =========================
            =========================
              =========================
                =========================
                  =========================
                    =========================
                      =========================*/

.offers {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.offers-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offer-flip {
  width: 100%;
  min-height: 420px;
  border-radius: 1.25rem;

  position: relative;
  perspective: 1100px;
  outline: none;

  cursor: pointer;
}

.offer-flip:focus-visible {
  outline: 2px solid rgba(229, 27, 35, 0.65);
  outline-offset: 6px;
}

.offer-flip .offer-front,
.offer-flip .offer-back {
  border-radius: 1.25rem;
}

.offer-face {
  position: absolute;
  inset: 0;

  overflow: hidden;
  backface-visibility: hidden;

  display: flex;
  flex-direction: column;
}

.offer-front {
  background: var(--dark);
  color: var(--text);

  justify-content: flex-end;

  padding-bottom: 2.5rem;

  text-align: center;
}

.offer-back {
  background: var(--dark);
  color: var(--text);
  transform: rotateY(180deg);

  padding: 1.35rem 1.25rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}

.offer-front,
.offer-back {
  transform-style: preserve-3d;
  transition: transform 550ms cubic-bezier(.25, .8, .25, 1);
}

.offer-flip:hover .offer-front,
.offer-flip:focus-within .offer-front,
.offer-flip:focus .offer-front {
  transform: rotateY(180deg);
}

.offer-flip:hover .offer-back,
.offer-flip:focus-within .offer-back,
.offer-flip:focus .offer-back {
  transform: rotateY(360deg);
}

.offer-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

/* TODO */
.offer-front::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, .10) 0%,
      rgba(0, 0, 0, .45) 45%,
      rgba(0, 0, 0, .82) 100%);
}

.offer-name {
  position: relative;
  z-index: 1;

  margin: 0;
  padding: 0 1rem;

  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;

  font-size: clamp(1.55rem, 6vw, 2.3rem);
}

.offer-title {
  margin: 0 0 0.35rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  font-size: clamp(1.45rem, 5.4vw, 2.05rem);
}

.offer-text {
  margin: 0;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
}

.offer-accent {
  color: #ff3b49;
  font-weight: 700;
}

.offer-contact {
  margin-top: 1.25rem;

  width: min(300px, 100%);
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 0.85rem;
}

@media (min-width: 768px) {
  .offers-inner {
    flex-direction: row;
    gap: 2rem;
  }

  .offer-card {
    flex: 1 1 0;
  }

  .offer-flip {
    min-height: 520px;
  }
}

@media (min-width: 1200px) {

  .offers::before,
  .offers::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: clamp(336px, 33.6vw, 624px);
    height: clamp(432px, 48vw, 816px);

    background-image: url("../assets/ornament.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 1;
    pointer-events: none;
    z-index: 0;
  }

  .offers::before {
    left: 0;
    transform: translate(-34%, -50%);
  }

  .offers::after {
    right: 0;
    transform: translate(34%, -50%) rotate(180deg);
  }

  .offers .container {
    position: relative;
    z-index: 1;
  }
}

@media (prefers-reduced-motion: reduce) {

  .offer-front,
  .offer-back {
    transition: none;
  }
}


/* =========================
  FAQ
  ========================= 
    =========================
      =========================
        =========================
          =========================
            =========================
              =========================
                =========================
                  =========================
                    =========================
                      =========================*/
.faq {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  --faq-pad: 2rem;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-h {
  margin: 0;
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;

  padding: var(--faq-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  font: inherit;
  text-align: left;
}

.faq-q-text {
  min-width: 0;
  font-weight: 700;
  font-size: 1.25rem;
}

.faq-i {
  flex: 0 0 auto;
  width: 35px;
  height: 35px;
  border-radius: 100px;

  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  transition: border-color 220ms ease;
}

.faq-line {
  position: absolute;
  border-radius: 10px;
  background: #000;
  transition: background-color 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.faq-line-h {
  width: 18px;
  height: 2px;
}

.faq-line-v {
  width: 2px;
  height: 18px;
}

.faq-item.is-open .faq-i {
  border-color: rgba(229, 27, 35, 1);
}

.faq-item.is-open .faq-line {
  background: var(--accent);
}

.faq-item:hover .faq-i {
  border-color: rgba(229, 27, 35, 1);
}

.faq-item:hover .faq-line {
  background: var(--accent);
}

.faq-item.is-open .faq-line-v {
  transform: scaleY(0);
  opacity: 0;
}

.faq-a {
  font-weight: 500;
  line-height: 1.5;
}

.faq-a-inner {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    max-height 380ms cubic-bezier(.25, .8, .25, 1),
    opacity 260ms ease,
    transform 260ms ease;
}

.faq-item.is-open .faq-a-inner {
  opacity: 1;
  transform: translateY(0);
}

.faq-a-pad {
  padding: 0 var(--faq-pad) var(--faq-pad);
}

.faq-a-pad p {
  margin: 0.75rem 0 0;
}

.faq-a-pad p:first-child {
  margin-top: 0;
}

.faq-ul {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.contact-link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .faq-item {
    --faq-pad: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-i, .faq-line, .faq-a-inner {
    transition: none;
  }
}

@media (min-width: 1200px) {

  .faq::before,
  .faq::after {
    content: "";
    position: absolute;
    top: 55%;

    width: clamp(336px, 33.6vw, 624px);
    height: clamp(432px, 48vw, 816px);

    background-image: url("../assets/ornament2.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
  }

  .faq::before {
    left: 0;
    transform: translate(-34%, -50%) rotate(270deg);
  }

  .faq::after {
    right: 0;
    transform: translate(34%, -50%) rotate(90deg);
  }

  .faq .container {
    position: relative;
    z-index: 1;
  }
}

/* =========================
  FAQ
  ========================= 
    =========================
      =========================
        =========================
          =========================
            =========================
              =========================
                =========================
                  =========================
                    =========================
                      =========================*/

.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  color: var(--text);
  padding: 2rem 0 1.25rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand {
  text-decoration: none;
  color: var(--text);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  position: relative;
  padding: 0.25rem 0;
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
  color: var(--accent);
  outline: none;
}

.footer-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
}

.footer-menu a:hover::after,
.footer-menu a:focus-visible::after {
  transform: scaleX(1);
}

.footer-social-link {
  color: #fff;
}

.footer-social {
  display: flex;
  justify-content: center;
  margin: 1.6rem 0 0.6rem;
}

.footer-social-link svg {
  width: 58px;
  height: 58px;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  border-color: rgba(229, 27, 35, 0.65);
  outline: none;
  transform: translateY(-1px);
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);

  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;

  font-size: 0.95rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--accent);
  outline: none;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-right {
    flex-direction: row;
    align-items: center;
  }

  .footer-menu {
    flex-direction: row;
    gap: 2rem;
  }
}


/* =========================
   CONTACT (after FAQ)
   ========================= 
========================= 
========================= 
========================= 
========================= 
========================= 
========================= 
========================= 
========================= 
========================= 
========================= */
.contact {
  padding: 3rem 0;
  background: #fff;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact .section-title {
  margin-bottom: 1.1rem;
}

.contact-lead {
  margin: 0;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.68);
  text-align: center;
}

.contact-card {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;

  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);

  padding: 1.25rem;
}

.contact-title {
  margin: 0 0 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-label-text {
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-input {
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  padding: 0.85rem 0.9rem;
  font: inherit;
  outline: none;
}

.contact-input:focus {
  border-color: rgba(229, 27, 35, 0.55);
  box-shadow: 0 0 0 3px rgba(229, 27, 35, 0.12);
}

.contact-submit {
  width: 100%;
}

.contact-policy {
  margin: 0.25rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.62);
}

.contact-desc {
  margin: 0 0 1.1rem;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-align: center;
}

.contact-textarea {
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  padding: 0.85rem 0.9rem;
  font: inherit;
  outline: none;

  min-height: 110px;
  resize: vertical;
}

.contact-textarea:focus {
  border-color: rgba(229, 27, 35, 0.55);
  box-shadow: 0 0 0 3px rgba(229, 27, 35, 0.12);
}


/* layout on larger screens */
@media (min-width: 992px) {
  .contact-inner {
    align-items: center;
  }

  .contact-copy {
    max-width: 720px;
  }

  .contact-card {
    margin-inline: auto;
  }
}


/* * ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **/
/* =========================
  MODAL (extra-compact mobile first)
  ========================= */

.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  justify-content: center;

  align-items: center;

  padding: 10px;
}

.modal[aria-hidden="true"] {
  display: none;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .62);
}

.modal-panel {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: #fff;
  color: #111;

  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .25);

  padding: 12px;
  display: flex;
  flex-direction: column;

  gap: 8px;

  max-height: calc(100dvh - 20px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.modal-title {
  margin: 0;
  padding-right: 40px;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.15;
}

.modal-desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.25;
  color: rgba(0, 0, 0, .65);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2px;
}

.modal-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal-label-text {
  font-weight: 700;
  font-size: 0.9rem;
}

.modal-input,
.modal-textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .14);
  padding: 8px 10px;
  font: inherit;
  outline: none;
}

.modal-input {
  height: 38px;
}

.modal-textarea {
  height: 88px;
  resize: vertical;
}

.modal-input:focus,
.modal-textarea:focus {
  border-color: rgba(229, 27, 35, .55);
  box-shadow: 0 0 0 3px rgba(229, 27, 35, .12);
}

.modal .btn,
.modal .btn-primary {
  width: 100%;
  border-radius: 12px;

  padding: 10px 12px;
  font-size: 1rem;
  line-height: 1.15;

  height: auto;
  min-height: 44px;
}

.modal-policy {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.25;
  color: rgba(0, 0, 0, .62);
}

@media (max-width: 380px) {
  .modal-panel {
    max-width: 340px;
  }

  .modal-textarea {
    height: 76px;
  }
}

@media (min-width: 480px) {
  .modal {
    align-items: center;
    padding: 16px;
  }

  .modal-panel {
    max-width: 460px;
    padding: 16px;
    border-radius: 16px;
    gap: 10px;
  }

  .modal-title {
    font-size: 1.25rem;
  }

  .modal-desc {
    font-size: 0.95rem;
  }

  .modal-input {
    height: 42px;
  }

  .modal-textarea {
    height: 110px;
  }
}

@media (min-width: 768px) {
  .modal-panel {
    max-width: 560px;
  }

  .modal-title {
    font-size: 1.45rem;
  }
}

/* =========================
  (Impressum / Datenschutz)
  ========================= */
.legal {
  padding: 2.5rem 0 3rem;
}

.legal-inner {
  width: min(900px, 100%);
}

.legal-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
  padding: 1.25rem;
}

.legal-card h2 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.1rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin: 1rem 0 0.35rem;
  font-size: 1rem;
}

.legal-card p {
  margin: 0.5rem 0;
}

.legal-list {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.35rem;
}

.legal-back {
  margin: 1.25rem 0 0;
  text-align: center;
}

/* =========================
  (Thanks)
  ========================= */

.thanks {
  background: #fff;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.thanks-inner {
  position: relative;
  text-align: center;
  max-width: 980px;
  margin-inline: auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.thanks-title {
  margin: 0;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;

  font-size: clamp(1.6rem, 3.8vw, 2.4rem);
  letter-spacing: -0.02em;
}

.thanks-accent {
  color: var(--accent);
}

.thanks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 56px;
  padding: 0.95rem 1.4rem;
  border-radius: 0.85rem;

  background: #ff3b49;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;

  box-shadow: 0 10px 24px rgba(229, 27, 35, 0.18);
}

.thanks-btn:hover,
.thanks-btn:focus-visible {
  background: var(--accent);
  outline: none;
}

@media (min-width: 768px) {
  .thanks-btn {
    min-height: 64px;
    padding: 1.05rem 2rem;
    font-size: 1.15rem;
  }
}

.form-error {
  color: #c00;
  margin-bottom: 10px;
  font-weight: 500;
}