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

:root {
  --primary-font:'Inter_18pt-Medium';
  --secondary-font:'Inter_18pt-Regular';
  --bg: #0f172a;
  --bg-light: #111827;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #38bdf8;
  --card: #020617;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter_18pt-Regular', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #020617, #020617 40%, #0f172a);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
p {
  font-family: var(--secondary-font);
}
a {
  color: var(--accent);
}
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 1.5rem;
}


.header {
  position: sticky;
  top: 0;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
}
.logo a {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.logo a:hover {
  color: #90dafa;
}


.nav {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
  font-family: var(--primary-font);
}

.nav a:hover {
  color: #e5e7eb;
}


.hero {
  text-align: center;
}

.hero-text {
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, #020617, #020617 40%, #0f172a);
  padding: clamp(32px, 5vw, 72px) clamp(18px, 6vw, 80px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

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

.hero p {
  max-width: 600px;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-text {
  max-width: 680px;
}



.btn-grad {
   padding: 0.75rem 1.75rem;
   text-align: center;
   transition: transform 0.2s ease, opacity 0.2s ease;
   color: #e5e7eb;       
   text-decoration: none;
   border-radius: 999px;
   display: inline-block;
   font-weight: 400;
   background: transparent;
   border: 1px solid var(--accent);
 }

 .btn-grad:hover {
  color: #90dafa;
   text-decoration: none;
   box-shadow: 0 0 5px var(--accent); 
   transform: translateY(-2px);
 }


 .btn.secondary  {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 400;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #e5e7eb; 
  border: 1px solid var(--accent);
}
.btn.secondary:hover{
  color: #90dafa; 
  border: 1px solid #4bc6fb; 
  box-shadow: 0 0 3px var(--accent); 
  transform: translateY(-2px);
}

.section {
  padding: 2rem 0;
}

.section.alt {
  background: var(--card);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}


.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: clamp(32px, 5vw, 72px) clamp(18px, 6vw, 80px);
  
}




.services{
  padding: clamp(32px, 5vw, 72px) clamp(18px, 6vw, 80px);
  background: #0b1324; 
}

.services__title{
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f2f5ff;
  margin: 0 0 24px;
}


.services__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
}


.service-card{
  border-radius: 22px;
  padding: 18px 18px 22px;
  background: rgba(0,0,0,0.22);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  color: #f2f5ff;
}


.service-card__video{
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,0.35);
  aspect-ratio: 16 / 9;
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
  margin-bottom: 16px;
}

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


.service-card__headline{
  margin: 0 0 10px;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-card__text{
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(242,245,255,0.82);
}


@media (max-width: 980px){
  .services__grid{
    grid-template-columns: 1fr;
  }
  .service-card{
    padding: 16px 16px 20px;
  }
}

.video-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-overlay.active{
  display: flex;
}

.overlay-video{
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 16px;
}

.video-close{
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 36px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.contact {
  text-align: center;
}

.contact p {
  margin-bottom: 2rem;
  color: var(--muted);
}


.footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.footer-copy {
  font-size: 0.9rem;
  color: var(--accent);
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.normal{
  color: inherit;
  text-decoration: none;
}
.normal2{
  color: inherit;
}


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

  .nav {
    gap: 1rem;
  }
 

  
    .hero-grid {
      grid-template-columns: 1fr;
      text-align: left;
    }
  
   

}



.expertise {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.expertise__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.expertise__header {
  margin-bottom: 1.5rem;
}

.expertise__title {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 0.6rem;
}

.expertise__subtitle {
  margin: 0;
  max-width: 65ch;
  opacity: 0.85;
}


.skills {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
}


.skill {
  grid-column: span 4;

  border-radius: 18px;
  padding: 1.15rem 1.15rem 1.05rem;

  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.10);


  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);

  
  min-height: 108px;

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

  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.skill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.skill__title {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}

.skill__meta {
  margin: 0.45rem 0 0;
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.35;
}

/* Tablet: 2 columns */
@media (max-width: 920px) {
  .skill {
    grid-column: span 6;
  }
}

/* Mobile: 1 column */
@media (max-width: 560px) {
  .skills {
    gap: 0.85rem;
  }

  .skill {
    grid-column: span 12;
    min-height: 0;
  }
}



.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  
}

.profile-image {
  display: flex;
  justify-content: center;
}

.profile-image img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 999px; 
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .profile-image {
    order: -1; 
  }
}



.section.alt {
  background: #0b1224;
}

.contact {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.contact-card {
  width: min(820px, 100%);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  padding: 2.5rem;
  text-align: left;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.contact-card h2 {
  text-align: center;
}


.contact-lead {
  margin: 0.75rem auto 1.75rem;
  max-width: 56ch;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}


.contact-hints {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.contact-hints li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.contact-hints li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #5cc8ff; /* dein Akzentblau */
  font-size: 1.2rem;
  line-height: 1;
}
.contact-hints {
 
  margin: 1.5rem auto 0;
  max-width: 56ch;   
  text-align: left; 
}


.contact-hints li:first-child {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.9);
}

.contact-actions {
  justify-content: center;
}

.contact-card > p,
.contact-hints li:first-child {
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
.contact-hints li:first-child {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.contact-content {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}



@media (max-width: 700px){

  /* Alle Nav-Links ausblenden */
  .site-nav a{
    display: none;
  }

  /* Contact sichtbar & rechts */
  .site-nav a.is-cta{
    display: inline-flex;
  }

  /* Nav selbst nach rechts schieben */
  .site-nav{
    margin-left: auto;
  }
}

  /* is-cta Contact-Button Nav */
  .site-nav a.is-cta{
    padding: 6px 10px;
    border-radius: 999px;
    background: transparent;
    color: #e5e7eb; 
    border: 1px solid var(--accent);
  }
  a.is-cta:hover{
    color: #90dafa; 
    border: 1px solid #4bc6fb; 
    box-shadow: 0 0 3px var(--accent); 
   
  }