*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --green: #46A5A7;
  --gray: #E8E8E8;
  --darkgray: #333333;
  --normalgray: #C9C9C9;
  --lightblack: #303030;
  --neon-royalblue: #4169E1;  
  --neon-glow: rgba(65, 105, 225, 0.75);
   --bg: #0b0b0f;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.7);
  --purple: #7c3aed;
  --ghost-border: rgba(255, 255, 255, 0.35);
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  color: var(--text);
}


/* HEADER */
.header_main_absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  z-index: 20;
  cursor: pointer;
}

.header_logo {
  font-size: 20px;
  font-weight: 800;
   font-family: "Great Vibes", cursive;
  text-transform: uppercase;
  background: linear-gradient(90deg, #7c3aed, #f6f4f9, #f6f4f9);
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(124,58,237,0.9));
  transition: transform 0.25s ease;
}
.header_logo:hover {
  transform: scale(1.18) rotate(-2deg) translateY(-3px);
  filter: drop-shadow(0 0 26px rgba(255,255,255,0.9)) drop-shadow(0 0 40px rgba(124,58,237,0.6));
}

.header_nav {
  display: flex;
  gap: 32px;
}

.header_nav_link {
  font-size: 16px;
  color: var(--text);
  background-image: linear-gradient(#ffffff, #ffffff);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.3s ease;
  padding-bottom: 10px;
}

.header_nav_link:hover {
  background-size: 100% 2px;
}

.hmnav-iconwrap{
  display: none;
}
.hmnav-sidebar{
  display: none;
}

@media screen and (max-width: 900px) {
  .header_main_absolute{
    padding-left: 10px;
  }
  .header_nav{
    display: none;
  }
  
  .hmnav-iconwrap {
    display: block;
    position: relative;
  }

  .hmnav-button {
      display: block;
      width: 44px;
      height: 44px;
      position: absolute;
      right: -20px;
      top: -20px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 2000;
  }

  .hmnav-bar {
      position: absolute;
      left: 8px;
      right: 8px;
      top: 50%;
      height: 2px;
      background: #ffffff;
      transform: translateY(-50%);
      transition: all 0.5s ease-in;
  }

  .hmnav-bar::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      height: 2px;
      background: #ffffff;
      transform: translateY(-10px);
      transition: transform 0.3s ease;
  }

  .hmnav-bar::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      height: 2px;
      background: #ffffff;
      transform: translateY(10px);
      transition: transform 0.3s ease;
  }

  .hmnav-button.hmnav-active .hmnav-bar {
      background: transparent;
  }

  .hmnav-button.hmnav-active .hmnav-bar::before {
      transform: translateY(0) rotate(45deg);
  }

  .hmnav-button.hmnav-active .hmnav-bar::after {
      transform: translateY(0) rotate(-45deg);
  }

  .hmnav-sidebar {
    display: block;
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    transition: left 0.3s ease;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hmnav-sidebar a {
    color: white;
    font-size: 24px;
    margin: 16px 0;
    background-image: linear-gradient(#ffffff, #ffffff);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.3s ease;
    padding-bottom: 10px;
  }

  .hmnav-sidebar a:hover {
    background-size: 100% 2px;
  }


  .hmnav-sidebar.hmnav-open {
      left: 0;
  }
}





/* HOME */
.home_section,
.home-conti {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  background-image: url("img/homebg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.home_container {
  width: 100%;
  max-width: 1080px;
}

.home_title {
  margin: 0 0 16px 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.5px;
  animation: hmglow 3s linear infinite;
  text-shadow:
  0 0 10px rgba(255,255,255,0.55),
  0 0 20px rgba(255,255,255,0.35);
}
.ht_word span {
  transition: opacity 0.3s ease, transform 0.3s ease;
}


.home_text {
  margin: 0 0 28px 0;
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.6;
  color: white;
  text-shadow:
  0 0 10px rgba(255,255,255,0.55),
  0 0 20px rgba(255,255,255,0.35);
}

.home_buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.home_button_primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 16px;
  text-decoration: none;
  background: var(--purple);
  color: var(--text);
  border: 1px solid transparent;
  transition: transform 0.06s ease-in-out, opacity 0.2s ease-in-out;
  cursor: pointer;
}

.home_button_primary:active {
  transform: translateY(1px);
}

.home_button_primary:hover,
.home_button_ghost:hover,
.homeconti_cta_primary:hover,
.homeconti_cta_ghost:hover {
  opacity: 0.6;
}

.home_button_ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 16px;
  text-decoration: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--ghost-border);
  transition: transform 0.06s ease-in-out, opacity 0.2s ease-in-out, border-color 0.2s ease-in-out;
  cursor: pointer;
}

.home-conti {
  width: 100%;
  padding: 64px 24px;
}

.homeconti_wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}

.homeconti_intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.homeconti_title {
  font-size: clamp(28px, 4.5vw, 40px);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.homeconti_text {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  color: var(--muted);
}

.homeconti_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  padding-top: 8px;
}

.homeconti_list_item {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

.homeconti_list_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 12px var(--neon-glow);
  background: #ffffff;
  box-shadow: 0 0 12px rgba(255,255,255,0.6);
}

.homeconti_cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.homeconti_cta_primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 16px;
  background: var(--purple);
  color: var(--text);
  border: 1px solid transparent;
  transition: transform 0.06s ease-in-out, opacity 0.2s ease-in-out;
}

.homeconti_cta_primary:active {
  transform: translateY(1px);
}

.homeconti_cta_primary:hover {
  opacity: 0.6;
}

.homeconti_cta_ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 16px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--ghost-border);
  transition: transform 0.06s ease-in-out, opacity 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.homeconti_highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.homeconti_card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px;
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.homeconti_stat_number {
  font-size: clamp(22px, 3.6vw, 32px);
  letter-spacing: 0.5px;
}

.homeconti_stat_label {
  font-size: 13px;
  color: var(--muted);
}

.homeconti_badge {
  grid-column: 1 / -1;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  opacity: 0.8;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px dashed rgba(255,255,255,0.18);
}

@media screen and (max-width: 900px) {
  .home_section,
  .home-conti {
    min-height: 60vh;
    background-position: top;
  }
  .homeconti_wrap {
    grid-template-columns: 1fr;
  }
  .homeconti_list {
    grid-template-columns: 1fr;
  }
  .homeconti_highlights {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 520px) {
  .homeconti_highlights {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 789px) {
  .home_section,
  .home-conti {
    background-image: url("img/homemobilee.png");
  }
}


/* SERVICES */
.test{
  height: 100vh;
  background-color: black;
  text-align: center;
  padding-top: 100px;
}



/* FOOTER */
.footer_section {
  background: #0b0b0f;
  color: #ffffff;
  padding: 48px 24px 28px 24px;
  font-family: system-ui, sans-serif;
}
.footer_wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.footer_top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer_brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer_logo_text img{
  width: 100px;
  height: 100px;
  margin-left: -20px;
}
.footer_muted {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.7;
  padding-right: 20px;
  text-shadow: 0 0 8px rgba(255,255,255,0.25);
}
.footani{
  color: #ffffff;
  font-size: 16px;
  line-height: 1.8;
  text-shadow:
    0 0 3px #000000,
    0 0 6px rgba(255,255,255,0.8),
    0 0 10px rgba(255,255,255,0.7);
}
.footer_col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer_heading {
  font-size: 16px;
  font-weight: 500;
}
.footer_list {
  display: grid;
  grid-template-rows: repeat(2, auto);
  gap: 8px;
}
.footer_row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer_link {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  opacity: 0.9;
}
.footer_link:hover {
  opacity: 1;
}

.footer_bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.footer_legal {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.footer_legal_link {
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}
.myteam{
  color: white;
}

@media (max-width: 800px) {
  .footer_top {
    grid-template-columns: 1fr;
  }
}


/* SOCIAL ICONS */
.social_fixed_box {
  position: fixed;
  top: 45%;
  right: 24px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 99999;
}

.social_icon_wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(237, 171, 250, 0.079);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.18s ease-in-out, transform 0.05s ease-in-out;
}

.social_icon_wrap:hover {
  opacity: 0.82;
}

.social_icon_wrap:active {
  transform: scale(0.94);
}

.social_svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}




/* =================================== */


/* SERVICES */
.services_section {
  background:#000000;
  display:flex;
  justify-content:center;
}

.services_wrap {
  width:100%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.services_content {
  display:flex;
  flex-direction:column;
  gap:20px;
  padding: 150px 30px;
  text-align: center;
}

.services_title {
  font-size:42px;
  margin:0;
  letter-spacing:0.5px;
}

.services_text {
  font-size:17px;
  line-height:1.6;
  color:var(--muted);
}

.services_list {
  display:flex;
  flex-direction:column;
  gap:14px;
}

.services_item {
  font-size:18px;
  color:var(--text);
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(2px);
  padding:14px 18px;
  border-radius:10px;
}

.services_item:hover {
  background:rgba(255,255,255,0.12);
  transform:translateY(-2px);
  box-shadow:0 0 12px rgba(124,58,237,0.4);
  opacity:1;
  cursor:pointer;
}

.services_image {
  width:100%;
  height:100%;
  object-fit:cover;
}

@media (max-width:900px) {
  .services_wrap {
    grid-template-columns:1fr;
  }
  .services_image {
    height:600px;
  }
}






/* GALERY */
.gallerypage_section {
  background:#000000;
  padding:0 0 80px 0;
}

.gallerypage_video_wrap {
  width:100%;
  height:50vh;
  overflow:hidden;
}

.gallerypage_video {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.gallerypage_grid_wrap {
  max-width:1400px;
  margin:0 auto;
  padding: 10px 40px;
}

.gallerypage_grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(260px,1fr));
  gap:20px;
}

.gallerypage_img {
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:12px;
  background:#111111;
}


@media (max-width:900px) {
  .gallerypage_grid_wrap{
    padding: 0;
  }
}




/* FAQ */
.faq {
  background: #0b0b0f;
  color: #ffffff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  padding: 160px 24px;
}

.faq_wrap {
  max-width: 900px;
  margin: 0 auto;
}

.faq_title {
  margin: 0 0 20px 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.faq_subtitle {
  margin: 0 0 28px 0;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.6;
}

.faq_list {
  display: grid;
  gap: 14px;
}

.faq_item {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  transition: transform 0.08s ease-in-out, border-color 0.2s ease-in-out, background 0.2s ease-in-out;
}

.faq_item:hover {
  border-color: rgba(124,58,237,0.6);
  background: rgba(124,58,237,0.06);
  transform: translateY(-1px);
}

.faq_q {
  width: 100%;
  background: transparent;
  color: #ffffff;
  padding: 18px 18px 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  border: none;
  font-size: 16px;
  text-align: left;
}

.faq_icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform 0.2s ease-in-out, background 0.2s ease-in-out;
}

.faq_item[aria-expanded="true"] .faq_icon {
  transform: rotate(45deg);
  background: #7c3aed;
  border-color: transparent;
}

.faq_a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.7;
  transition: max-height 0.28s ease, padding 0.28s ease;
}

.faq_item[aria-expanded="true"] .faq_a {
  padding: 0 20px 18px 20px;
  max-height: 400px;
}

.faq_kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.faq_linkline {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.faq_cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: #7c3aed;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.06s ease-in-out, opacity 0.2s ease-in-out;
}

.faq_cta:hover {
  opacity: 0.92;
}

.faq_ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.28);
}

.faq_ghost:hover {
  border-color: rgba(255,255,255,0.45);
}

@media (max-width: 920px) {
  .faq {
    padding: 134px 18px;
  }
  .faq_q {
    padding: 16px 16px 16px 18px;
  }
  .faq_item[aria-expanded="true"] .faq_a {
    padding: 0 18px 16px 18px;
  }
}




/* ARROW */
.arrow {
  position:fixed;
  bottom:24px;
  right:24px;
  z-index:9999;
}

.arrow_btn {
  width:50px;
  height:50px;
  border-radius:50%;
  background:transparent;
  backdrop-filter:blur(4px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  opacity:1;
  transform:scale(1);
  transition:background 0.25s ease, transform 0.25s ease;
}

.arrow_btn:hover {
  background:rgba(255,255,255,0.14);
  transform:scale(1.1);
}

.arrow_icon {
  width:24px;
  height:24px;
  fill:#ffffff;
}




/* DATENSCHUTZ */
.datenschutz {
  background: var(--bg);
  color: var(--text);
  padding: 100px 150px;
  display: block;
}

.datenschutz .ds_wrap {
  max-width: 900px;
  margin: 0 auto;
}

.datenschutz h1 {
  margin: 0 0 20px 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.datenschutz h2 {
  margin: 34px 0 12px 0;
  font-size: clamp(22px, 3.2vw, 28px);
  line-height: 1.2;
}

.datenschutz h3 {
  margin: 26px 0 10px 0;
  font-size: clamp(18px, 2.6vw, 22px);
  line-height: 1.25;
}

.datenschutz h4 {
  margin: 18px 0 8px 0;
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.3;
}

.datenschutz p {
  margin: 0 0 14px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.datenschutz ul {
  margin: 8px 0 16px 0;
  padding-left: 0;
  display: grid;
  gap: 8px;
}

.datenschutz li {
  list-style: none;
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.datenschutz li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(255,255,255,0.6);
}

.datenschutz a {
  color: var(--text);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.25s ease, opacity 0.2s ease;
}

.datenschutz a:hover {
  background-size: 100% 1px;
  opacity: 0.9;
}

.datenschutz .ds_note {
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid var(--ghost-border);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.datenschutz .ds_block {
  padding: 18px 16px;
  border-left: 3px solid var(--purple);
  background: rgba(124,58,237,0.06);
  border-radius: 10px;
  margin: 16px 0;
}

.datenschutz .ds_small {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .datenschutz {
    padding: 120px 18px 64px 18px;
  }
  .datenschutz p {
    font-size: 15px;
  }
  .datenschutz li {
    font-size: 15px;
  }
}



/* IMPRESSUM */
.impressum {
  background: var(--bg);
  color: var(--text);
  padding: 140px 24px 80px 24px;
  display: block;
}

.impressum .imp_wrap {
  max-width: 900px;
  margin: 0 auto;
}

.impressum h1 {
  margin: 0 0 20px 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.impressum h2 {
  margin: 34px 0 12px 0;
  font-size: clamp(22px, 3.2vw, 28px);
  line-height: 1.2;
}

.impressum h3 {
  margin: 26px 0 10px 0;
  font-size: clamp(18px, 2.6vw, 22px);
  line-height: 1.25;
}

.impressum h4 {
  margin: 18px 0 8px 0;
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.3;
}

.impressum p {
  margin: 0 0 14px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.impressum ul {
  margin: 8px 0 16px 0;
  padding-left: 0;
  display: grid;
  gap: 8px;
}

.impressum li {
  list-style: none;
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.impressum li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(255,255,255,0.6);
}

.impressum a {
  color: var(--text);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.25s ease, opacity 0.2s ease;
}

.impressum a:hover {
  background-size: 100% 1px;
  opacity: 0.9;
}

.impressum .imp_note {
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid var(--ghost-border);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.impressum .imp_block {
  padding: 18px 16px;
  border-left: 3px solid var(--purple);
  background: rgba(124,58,237,0.06);
  border-radius: 10px;
  margin: 16px 0;
}

.impressum .imp_small {
  font-size: 14px;
  color: var(--muted);
}

.impressum .imp_contact_grid {
  display: grid;
  grid-template-columns: minmax(120px, 220px) 1fr;
  gap: 8px 18px;
  margin: 10px 0 18px 0;
}

.impressum .imp_label {
  color: var(--text);
  font-size: 15px;
}

.impressum .imp_value {
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 920px) {
  .impressum {
    padding: 120px 18px 64px 18px;
  }
  .impressum p,
  .impressum li,
  .impressum .imp_label,
  .impressum .imp_value {
    font-size: 15px;
  }
  .impressum .imp_contact_grid {
    grid-template-columns: 1fr;
  }
}


/* CONTACT FORM */
.nf-contact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  background-image: url("img/homebg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  isolation: isolate;
    }
.nf-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.62), rgba(0,0,0,0.72));
  z-index: -1;
}

@media screen and (max-width: 789px) {
  .nf-contact {
    background-image: url("img/homemobilee.png");
  }
}

    .nf-contact__card {
      width: 100%;
      max-width: 640px;
      border-radius: 18px;
      background: rgba(10, 9, 14, 0.72);
      border: 1px solid rgba(170, 120, 255, 0.22);
      box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(10px);
      padding: 22px;
    }

    .nf-contact__head {
      margin-bottom: 16px;
    }

    .nf-contact__title {
      margin: 0 0 6px 0;
      font-size: 22px;
      letter-spacing: 0.2px;
    }

    .nf-contact__sub {
      margin: 0;
      font-size: 14px;
      color: rgba(236, 234, 243, 0.76);
    }

    .nf-contact__form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .nf-contact__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .nf-contact__field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .nf-contact__label {
      font-size: 13px;
      color: rgba(236, 234, 243, 0.86);
    }

    .nf-contact__input,
    .nf-contact__textarea {
      width: 100%;
      border-radius: 12px;
      border: 1px solid rgba(170, 120, 255, 0.22);
      background: rgba(6, 6, 10, 0.72);
      color: #f4f2ff;
      padding: 12px 12px;
      outline: none;
      transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
    }

    .nf-contact__textarea {
      resize: vertical;
      min-height: 130px;
    }

    .nf-contact__input:focus,
    .nf-contact__textarea:focus {
      border-color: rgba(190, 140, 255, 0.62);
      box-shadow: 0 0 0 4px rgba(155, 92, 255, 0.18);
    }

    .nf-contact__input[aria-invalid="true"],
    .nf-contact__textarea[aria-invalid="true"] {
      border-color: rgba(255, 92, 150, 0.6);
      box-shadow: 0 0 0 4px rgba(255, 92, 150, 0.12);
    }

    .nf-contact__hint {
      min-height: 16px;
      font-size: 12px;
      color: rgba(255, 145, 190, 0.9);
    }

    .nf-contact__meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .nf-contact__count {
      font-size: 12px;
      color: rgba(236, 234, 243, 0.6);
      white-space: nowrap;
    }

    .nf-contact__actions {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 2px;
      flex-wrap: wrap;
    }

    .nf-contact__button {
      border: 1px solid rgba(190, 140, 255, 0.42);
      background: linear-gradient(180deg, rgba(155, 92, 255, 0.22), rgba(155, 92, 255, 0.12));
      color: #f4f2ff;
      padding: 12px 14px;
      border-radius: 12px;
      cursor: pointer;
      transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease, border-color 160ms ease;
    }

    .nf-contact__button:hover:enabled {
      transform: translateY(-1px);
      box-shadow: 0 10px 28px rgba(155, 92, 255, 0.18);
      border-color: rgba(210, 170, 255, 0.62);
    }

    .nf-contact__button:disabled {
      opacity: 0.45;
      cursor: not-allowed;
    }

    .nf-contact__status {
      font-size: 13px;
      color: rgba(236, 234, 243, 0.72);
    }

    .nf-contact__note {
      font-size: 12px;
      color: rgba(236, 234, 243, 0.62);
      line-height: 1.4;
    }

    @media (min-width: 720px) {
      .nf-contact__card {
        padding: 26px;
      }

      .nf-contact__grid {
        grid-template-columns: 1fr 1fr;
      }

      .nf-contact__title {
        font-size: 24px;
      }
    }