* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;
  background: linear-gradient(135deg, #000000 0%, #000600 50%, #002200 85%, #003300 100%);

}

:root {
  --green: #46A5A7;
  --gray:#D5D5D5;
  --darkgray: #808080;
  --white: white;
  --normalgreen: #102D01;
  --lightblack: #303030;
  --neon-royalblue: #4169E1;  
  --neon-glow: rgba(65, 105, 225, 0.75);
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}


/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background: transparent;
    z-index: 1000;
}

.logo img{
  width: 180px;
  height: 90px;
}
header nav.primary {
    display: flex;
    gap: 30px;
}

header nav.primary a {
    color: var(--darkgray);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

header nav.primary a:hover {
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-thickness: 1px;
}

.hamburger {
    display: none;
}
nav.sidebar {
    display: none;
}


@media (max-width: 1100px) {
  header nav.primary {
    display: none;
  }

.logo img{
  width: 120px;
  height: 70px;
}
  .hamburger {
  display: block;
  width: 44px;
  height: 44px;
  position: absolute;
  right: 16px;
  top: 40%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2000;
}

.hamburger span,
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

.hamburger span {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger::before {
  top: 12px;
}

.hamburger::after {
  top: 30px;
}

.hamburger.active::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.active::after {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.hamburger.active span {
  opacity: 0;
}

nav.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 80%;
  max-width: 300px;
  background: #111;
  padding: 100px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1500;
}

  nav.sidebar.open {
    transform: translateX(0);
  }

  nav.sidebar a {
    color: var(--darkgray);
    padding-left: 30px;
    font-size: 1.1rem;
  }
  nav.sidebar a:hover {
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 1px;
}

}






/* HOME  */
.home {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--white);
  overflow: hidden;
  padding-left: 60px;
  padding-top: 50px;

  h1{
    font-size: 5rem;
    max-width: 1100px;
  }
}

.background-video {
  position: absolute;
  top: 60%;
  left: 30%;
  width: 85%;
  height: 100%;
  transform: translateY(-50%);
  object-fit: cover;
  z-index: -1;
  border-radius: 12px;
}

.home .cta {
    display: inline-block;
    padding: 12px 30px;
    background: rgb(57, 55, 55);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 30px;
    transition: transform 0.6s ease, box-shadow 0.9s ease-in-out;
}
.home .cta:hover {
  transform: scale(1.1);
}

.reveal {
  opacity: 0;
  transform: translateY(80px) scale(0.95) rotateX(10deg);
  filter: blur(6px);
  transition: 
    opacity 0.9s ease, 
    transform 0.9s cubic-bezier(0.25, 1, 0.3, 1), 
    filter 1s ease;
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0);
  filter: blur(0);
}


@media (max-width: 1300px) {
    .home {
    min-height: 60vh;
    }
  .background-video {
    left: 40%;
    top: 50%;
    width: 70%;
    height: 70%;
  }
}

@media (max-width: 1130px) {
  .home {
    justify-content: flex-start;  


    h1{
      font-size: 4rem;
      max-width: 700px;
      padding-top: 120px; 
    }
  }

  .background-video {
    left: 30%;
    top: 50%;
    width: 70%;
    height: 70%;
  }
}



@media (max-width: 779px) {
   .home {
    min-height: 60vh;
    padding-top: 100px;
    padding-left: 20px;    

    h1{
    font-size: 2rem;
    max-width: 450px;
    }
  }

  .background-video {
    left: 50%;
    top: 60%;
    width: 40%;
    height: 40%;
  }
}

@media (max-width: 440px) {
   .home {
    min-height: 45vh;
    padding-top: 0;
    padding-left: 20px;   
    
    
    h1{
      max-width: 370px;
    }
  }
  .background-video {
    left: 45%;
    top: 65%;
    width: 60%;
    height: 60%;
  }
}

@media (max-width: 375px) {
   .home {
    min-height: 50vh;
    padding-top: 0;
    padding-left: 20px;   


    
  }
  .background-video {
    left: 45%;
    top: 85%;
    width: 60%;
    height: 60%;
    padding-bottom: 100px;
  }
}






/* ONLINE-AUFTRITT */
section.online-auftritt {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  
}
.online-auftritt .contentonline {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem);
}
.online-auftritt h1 {
  margin: 0 0 1rem;
  font-size: 7rem;
  font-weight: 700;
  color: var(--white);
  animation: riseIn 3s ease-in-out infinite alternate;
}

.online-auftritt p {
    margin: 0 auto 2.2rem;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.7;
    color: var(--muted);
    max-width: 900px;
    color: var(--darkgray);
}

@keyframes riseIn {
  0% {
    opacity: 0.7;
    transform: translateY(20px) scale(0.98);
    filter: blur(2px);
  }
  50% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0.7;
    transform: translateY(20px) scale(0.98);
    filter: blur(2px);
  }
}

.online-auftritt .gradient {
    background: linear-gradient(90deg, #43e97b 0%, #3bbef5 50%, #ff9ecb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.online-auftritt .features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin: 60px auto;
  padding: 0;
    max-width: 900px;
  list-style: none;
}
.online-auftritt .chip {
  background: rgb(57, 55, 55);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  color: #d7d9de;
}
.online-auftritt .cta {
    display: inline-block;
    padding: 12px 30px;
    background: rgb(57, 55, 55);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.6s ease, box-shadow 0.9s ease-in-out;
}
.online-auftritt .cta:hover {
  transform: scale(1.1);
}
.online-auftritt .cta span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.85rem;
  color: #e6e7ea;
}
.fett{
  font-weight: bolder;
  text-transform: uppercase;
}

@media (max-width: 1250px) {
  section.online-auftritt {
    padding: 1rem 1rem;
  }
  .online-auftritt .contentonline {
    padding: 1rem 1.5rem;
    border-radius: 22px;
  }
  .online-auftritt h1 {
    font-size: 5rem;
    line-height: 1.3;
  }
  .online-auftritt p {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
  }
  .online-auftritt .features {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  .online-auftritt .chip {
    padding: 0.45rem 0.8rem;
    font-size: 0.85rem;
  }
  .online-auftritt .cta {
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
  }
  .break {
    display: block;
  }
}


@media (max-width: 650px) {
  .online-auftritt h1{
    font-size: 4.2rem;
  }
  .online-auftrittp{
    font-size: 0.75rem;
  }
  
}
@media (max-width: 570px) {
  .online-auftritt h1{
    font-size: 3.2rem;
  }
  .online-auftrittp{
    font-size: 0.55rem;
  }
  .online-auftritt .cta{
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }
}





/* SKALA  LAPTOP*/
.lap-wrap {
  margin: 0;
  height: 100vh;
  display: grid;
  place-items: center;
}
.lap-section {
  position: relative;
  width: 1500px;
  max-width: 96vw;
}
.lap-image {
  width: 100%;
  height: auto;
  display: block;
}
.lap-screen {
  position: absolute;
  left: 20.2%;
  top: 13.5%;
  width: 59.5%;
  height: 53%;
  overflow: hidden;
}
.skala-wrap {
  --skala-bg: #000000;
  --skala-fg: #eaeaea;
  --skala-neon: #39ff14;
  --skala-neon2: #7dffcf;
  --skala-muted: #141414;
  background: var(--skala-bg);
  color: var(--skala-fg);
  height: 100%;
  padding: 10px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
}
.skala-head {
  text-align: center;
}
.skala-head-title {
  margin: 0;
  font-size: 16px;
  color: var(--skala-neon);
  letter-spacing: 0.2px;
  text-shadow: 0 0 8px rgba(57,255,20,0.45);
}

.skala-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  overflow: auto;
}
.skala-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--skala-muted);
  border-radius: 10px;
}
.skala-ring {
  --p: 100;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(from -90deg, var(--skala-neon) 0 calc(var(--p) * 1%), #1f1f1f 0 100%);
}
.skala-ring::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: radial-gradient(60% 60% at 50% 35%, rgba(125,255,207,0.22), transparent 60%), #000000;
  box-shadow: inset 0 0 14px rgba(57,255,20,0.22);
}
.skala-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 6px;
}
.skala-percent {
  font-size: 10px;
  font-weight: 800;
  color: var(--skala-neon);
  line-height: 1;
}
.skala-text {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.skala-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--skala-neon2);
}
.skala-note {
  font-size: 11px;
  color: #a9a9a9;
}
.scroll-hint{
  display: none;
}

@media (max-width: 1200px) { 
  .lap-wrap{
    position: relative;
  }

  .scroll-hint {
    display: block;
    position: absolute;
    right: 20%;
    top: 42%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #39ff14;
    opacity: 0.7;
    font-weight: bolder;
    z-index: 2000;
    pointer-events: none;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

@media (max-width: 1100px) {
  .lap-wrap {
    padding: 1rem 0;
    height: auto;
  }
  .skala-title{
    font-size: 10px;
  }
  .skala-ring {
    width: 38px;
    height: 38px;
  }
 .skala-ring::before {
    inset: 3px;
  }
  .skala-percent {
    font-size: 7px;
  }
  
}

@media (max-width: 940px) {
  .skala-note{
    font-size: 8px;
  }
  .skala-text{
    font-size: 9px;
  }
}

@media (max-width: 770px) {
  .skala-ring{
    width: 25px;
    height: 25px;
  }
  .skala-percent{
    font-size: 4px;
  }
  .skala-title{
    font-size: 8px;
  }
  .skala-note{
    font-size: 7px;
  }
  .skala-card{
    gap: 2px;
    padding: 2px;
  }
}


@media (max-width: 710px) {
  .skala-title{
    font-size: 6px;
  }
  
}
@media (max-width: 600px) {
  .skala-ring{
    width: 20px;
    height: 20px;
  }
  .skala-ring::before {
    inset: 1px;
  }
  .skala-percent{
    font-size: 4px;
    margin-left: -3px;
  }
  .skala-title{
    font-size: 5px;
  }
  .skala-note{
    font-size: 5px;
  }
  .scroll-hint{
    font-size: 7px;
  }
}

@media (max-width: 500px) {
    .skala-ring{
      width: 15px;
      height: 15px;
    }
    .skala-percent{
      font-size: 3px;
    }
    .skala-title{
      font-size: 5px;
    }
    .skala-note{
      font-size: 5px;
    } 
}
@media (max-width: 350px) {
    .skala-title{
      font-size: 4px;
    }
      .skala-ring{
      width: 13px;
      height: 13px;
    }
    .skala-percent{
      font-size: 2px;
    }
}


/* COMPANY */
section.companycontent{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 106px 20px;
  overflow: hidden;
}
.scroller{
  position: relative;
  width: 100%;
  overflow: hidden;
}
.scroller-track{
  display: flex;
  align-items: stretch;
  gap: var(--gap, 18px);
  animation: scroll 12s linear infinite;
  will-change: transform;
}
.company{
  flex: 0 0 calc((100% - (var(--gap, 18px) * 3)) / 4);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  margin-top: 40px;
  font-weight: 600;
  letter-spacing: .02em;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.company:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,255,255,.1);
}
@keyframes scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

@media (max-width: 1200px){
  section.companycontent{
  padding: 36px 20px;
}
  .company{
    flex-basis: calc((100% - (var(--gap, 18px) * 2)) / 3);
  }
    .scroller-track{
    animation: scroll 7s linear infinite;
  }
}
@media (max-width: 860px){
    section.companycontent{
    padding: 0 20px;
  }
  .company{
    flex-basis: calc((100% - var(--gap, 18px)) / 2);
  }
  .scroller{
    padding: 100px 0;
  }
     .scroller-track{
    animation: scroll 5s linear infinite;
  }
}

@media (max-width: 670px){
    section.companycontent{
    padding-top: 120px;
  }
  
}




/* SKALA MOBILE */
.mobileskala-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  background-image: url("img/code\ JS\ .png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.mobileskala-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.25;
}

.mobileskala-card {
  position: relative;
  z-index: 1;
  width: 240px;
  text-align: center;
}

.mobileskala-title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.mobileskala-subtitle {
  margin-bottom: 20px;
  font-size: 13px;
  color: #8b8d95;
}

.mobileskala-gauge-wrap {
  position: relative;
  height: 240px;
}

.mobileskala-gauge-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  display: block;
}

.mobileskala-track {
  stroke: #2a2d36;
  opacity: 0.85;
}

.mobileskala-progress {
  stroke-linecap: round;
  filter: drop-shadow(0 4px 12px rgba(131, 56, 236, 0.45));
}

.mobileskala-pct {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .mobileskala-container {
  background-position: bottom;
}
.mobileskala-bg{
  width: 450px;
}

}








/* ÜBER MICH */
.uber {
  padding-bottom: 80px;
  color: var(--white);
}

.uber__wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 26px;
  padding: 0 10px;
}

.uber__image {
  position: relative;
}

.uber__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: translateZ(0);
}

.uber__title {
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.1;
  margin: 0 0 24px 0;
  color: var(--gray);
}

.uber__subtitle {
  font-size: clamp(20px, 2.4vw, 28px);
  margin: 32px 0 12px 0;
  color: var(--gray);
}

.uber__text {
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.75;
  margin: 0 0 18px 0;
}


@media (max-width: 1100px) {
  .uber__wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }
  .uber__content {
    margin: 0 auto;
    width: 100%;
    padding: 0 90px;
  }
  .uber__text{
    font-size: 2rem;
  }
    .uber__image{
    width: 100%;
  }
  .uber__image img {
    height: auto;
    max-height: none;
  }
}

@media (max-width: 700px) {
  .uber {
    padding-top: 26px;
    padding-bottom: 56px;
  }
  .uber__wrap {
    gap: 24px;
  }
  .uber__title {
    margin-bottom: 16px;
  }
}

@media (max-width: 530px) {
  .uber__title{
    font-size: 3.5rem;
  }
  .uber__content{
    font-size: 1rem;
    padding: 20px;
    
  }
  .uber__subtitle{
    font-size: 3rem;
    padding-bottom: 30px;
  }
}






/* FAQ  */
section.faq-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 60px 20px;
}
section.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}
.faq-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
}
.faq-head {
  text-align: left;
  margin-bottom: 28px;
}
.faq-title {
  font-size: clamp(34px, 5.5vw, 56px);
  margin: 0 0 6px 0;
  background: linear-gradient(90deg, #43e97b, #3bbef5, #0b6446, #ff9ecb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.faq-sub {
  margin: 0;
  font-size: 1rem;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  padding: 1px;
  transition: all 0.3s ease;
  background-image: linear-gradient(135deg, #309d54, #3bbef5, #164e0b, #ff9ecb);
  background-size: 300% 300%;
  animation: gradientFlow 8s ease infinite;
}
.faq-inner {
  border-radius: 13px;
  overflow: hidden;
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.faq-toggle {
  display: none;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
}
.faq-q-text {
  font-weight: 600;
  font-size: 1.05rem;
}
.faq-q-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--muted);
  transition: transform .25s ease, color .25s ease, border-color .25s ease;
}
.faq-toggle:checked + label .faq-q-icon {
  transform: rotate(45deg);
  color: #fff;
  border-color: #fff;
}
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  line-height: 1.6;
  font-size: 0.95rem;
  padding: 0 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}
.faq-toggle:checked ~ .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding: 0 20px 18px 20px;
}
@media (max-width: 720px) {
  .faq-q-text { font-size: 1rem; }
}





/* CONTACT */
.contact {
  padding: clamp(2rem, 4vw, 4rem) 1.25rem;
  max-width: 1300px;
  margin: 0 auto;
}

.contact .wrap {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  align-items: start;
  color: #ffffff;
}

.contactleft-bereich{
  width: 50%;
}
.contactleft-feld {
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  padding: 40px 32px;
  backdrop-filter: blur(6px);
  animation: floatIn 600ms ease-out both;
  height: 700px;
}

.contactleft-überschrift {
  margin: 0 0 20px 0;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--gray);
}

.contactleft-akzent {
  color: var(--green);
}

.contactleft-text {
  margin: 0 0 14px 0;
  font-size: clamp(16px, 1.7vw, 20px);
  color: #b8becc;
}

.contactleft-text-hervorgehoben {
  font-size: clamp(12px, 1.5vw, 16px);
  color: var(--darkgray);
  opacity: 0.95;
}

.contactleft-angaben {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.contactleft-infofeld {
  font-size: 1rem;
  color: #e7e9ee;
}

@keyframes floatIn {
  from {
    transform: translateY(14px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.contact .right{
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 700px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
}

.contact .image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
}

.contact .tag {
  position: absolute;
  left: 6%;
  translate: 0 0;
  padding: 0.75rem 1rem;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.45;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  max-width: 86%;
}

.contact .tag-1 {
  top: 7%;
}

.contact .tag-2 {
  top: 34%;
}

.contact .tag-3 {
  top: 56%;
}

.contact .tag-4 {
  top: 78%;
}


.contact .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
  background: #5aa0ff;
  box-shadow: 0 0 0 3px rgba(90,160,255,0.25);
}

@media (max-width: 1030px) {
.contactleft-feld{
  height: auto;
}
.image-wrap{
  height: auto;
}
.contactleft-überschrift{
  font-size: 3rem;
}
}


@media (max-width: 440px) {
  .contact .wrap {
    flex-direction: column;
  }
  .contact .right {
    width: 100%;

  }
  .contactleft-bereich{
    width: 100%;
  }
  .contactleft-infofeld {
  font-size: 0.9rem;
}
.contactleft-überschrift{
  font-size: 2.2rem;
}

}




/* FOOTER */
footer {
    padding: 60px 80px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px; 
    max-width: 1100px;
    color: white;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-width: 180px;
}

.footer-column.large {
    flex: 1;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 6px;
}

.footer-column a {
    color: white;
    transition: color 0.3s, transform 0.3s;
}

.footer-column a:hover {
    color: #ddd;
    transform: translateX(4px);
}

.footer-column p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-column img {
    width: 150px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.bottomlogo {
  padding-top: 30px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 120px;
  font-weight: 600;
  letter-spacing: 25px;
  text-align: center;
  color: var(--gray);
}
@media (max-width: 1030px) {
  .bottomlogo{
    font-size: 70px;
  }
}

@media (max-width: 890px) {
  .bottomlogo{
    font-size: 50px;
  }
   .footer-column h3 {
    width: 200px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 30px 20px;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .footer-column {
    min-width: 0;
  }

  .footer-column h3 {
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .footer-column img {
    margin-left: 0;
    max-width: 100%;
    height: auto;
  }
  
  .bottomlogo {
    padding-top: 30px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 10px;
    text-align: center;
    color: var(--gray);
  }

}

.footer-bottom {
  width: 100%;
  border-top: 1px solid #e5e5e7;
  color: white;
  padding-bottom: 10px;
}

.footer-bottom p {
  margin: 0;
  padding-top: 6px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}







/* ===========IMPRESSUM UND DATENSCHUTZ============== */
section#impressum,
section#datenschutz {
   background: linear-gradient(135deg, #000000 0%, #000600 50%, #002200 85%, #003300 100%);
    color: white;
    padding: 80px 10%;
    line-height: 1.7;
}

section#impressum h2,
section#datenschutz h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding-bottom: 6px;
    letter-spacing: 0.5px;
}

section#impressum h3,
section#datenschutz h3 {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #f0f0f0;
}

section#impressum p,
section#datenschutz p,
section#datenschutz ul {
    margin-bottom: 15px;
    opacity: 0.9;
}

section#datenschutz ul {
    list-style: disc;
    padding-left: 25px;
}

section#impressum a,
section#datenschutz a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
}

section#impressum a:hover,
section#datenschutz a:hover {
    color: #ddd;
}

@media (max-width: 900px) {
    section#impressum,
    section#datenschutz {
        padding: 60px 6%;
    }

    section#impressum h2,
    section#datenschutz h2 {
        font-size: 1.6rem;
    }

    section#impressum h3,
    section#datenschutz h3 {
        font-size: 1.1rem;
    }
}




/* 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;
} */