@font-face {
  font-family: 'Inter';
  src: url('/fonts/InterVariable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --fg: #fff;
  --muted: #cfcfcf;
  --accent: #fff;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-hover-bg: rgba(255, 255, 255, 0.08);
  --panel-radius: 24px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: var(--fg);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  min-height: 100vh;
  overflow-y: auto;
}

/* Hintergrundbild */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('/background/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: -1
}

/* Logo oben links - nur auf Unterseiten sichtbar */
.header-logo {
  position: absolute;
  top: 12px;
  left: 15px;
  z-index: 10;
  height: 50px;
  width: auto;
  max-width: none;
  transition: all 0.3s ease;
}

.header-logo.visible {
  opacity: 1;
  pointer-events: auto;
}

.header-logo:hover {
  cursor: pointer;
  opacity: 0.8;
  transform: scale(1.05);
}

/* Navigation */
.nav {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 13, 13, .75);
  backdrop-filter: blur(12px);
  height: auto;
  border: 1px solid rgba(255, 255, 255, .12);
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14.5px;
  position: relative;
  padding: 10px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-weight: 500;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.nav a:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, .1);
}

.nav a.active {
  background: rgba(255, 255, 255, .15);
  box-shadow: 0 4px 16px rgba(255, 255, 255, .15),
    inset 0 1px 0 rgba(255, 255, 255, .2);
  transform: scale(1.05);
}

.nav a.active:hover {
  background: rgba(255, 255, 255, .2);
  transform: scale(1.05) translateY(-2px);
}

/* Views */
.view {
  display: none;
  min-height: 100vh;
}

.view.active {
  display: block;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 80px;
}

#home.view.active {
  display: block;
  /* War vorher flex */
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 100px;
}

.hero-container {
  max-width: 1200px !important;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-full-panel {
  padding: 48px;
  background: rgba(13, 13, 13, .75);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.hero-bg-panel {
  background: linear-gradient(rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 0.8)), url('img/hero-bg.png');
  background-size: cover;
  background-position: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.hero-mini-logo {
  height: 48px;
  width: auto;
  margin-bottom: 24px;
  opacity: 0.8;
}

.hero-greeting {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 24px !important;
  line-height: 1.1 !important;
  font-weight: 700;
  letter-spacing: -3px !important;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 40px !important;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

.secondary-button {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Abstract Glass Animation */
.hero-image-frame.glass-shape-container {
  overflow: visible;
  /* Allow glow to spill out */
  border: none;
  box-shadow: none;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.glass-shape {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  transform: rotateX(10deg) rotateY(-10deg);
  animation: float-glass 6s ease-in-out infinite;
  box-shadow:
    20px 20px 50px rgba(0, 0, 0, 0.3),
    inset 0 0 30px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.glass-shape-inner {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
  animation: pulse-inner 4s ease-in-out infinite alternate;
}

.glass-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  animation: glow-pulse 5s ease-in-out infinite;
}

@keyframes float-glass {

  0%,
  100% {
    transform: rotateX(10deg) rotateY(-10deg) translateY(0);
  }

  50% {
    transform: rotateX(15deg) rotateY(-5deg) translateY(-20px);
  }
}

@keyframes pulse-inner {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.hero-grid:hover .glass-shape {
  transform: rotateX(5deg) rotateY(-5deg) scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Ambient Background Blobs */
.ambient-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.4;
  animation: float-blob 20s infinite alternate;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100, 100, 255, 0.3), transparent);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 50, 255, 0.2), transparent);
  bottom: 10%;
  right: -10%;
  animation-delay: -5s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(50, 200, 255, 0.2), transparent);
  top: 40%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes float-blob {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, 50px) scale(1.1);
  }
}

/* Tech Stack Marquee */
.tech-marquee-container {
  margin-top: 40px;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tech-marquee-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: scroll-tech 30s linear infinite;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tech-marquee-track span {
  color: rgba(255, 255, 255, 0.8);
}

@keyframes scroll-tech {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* 
   ===================================
   WIREFRAME CUBE OVERRRIDES (DARK TECH) 
   =================================== 
*/

.hero-image-frame.glass-shape-container {
  /* Overriding previous settings */
  perspective: 1200px !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.wireframe-cube {
  width: 200px;
  height: 200px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(-20deg);
  animation: rotate-cube 12s linear infinite;
}

.face {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.02);
  /* Very subtle fill */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.front {
  transform: translateZ(100px);
}

.back {
  transform: rotateY(180deg) translateZ(100px);
}

.right {
  transform: rotateY(90deg) translateZ(100px);
}

.left {
  transform: rotateY(-90deg) translateZ(100px);
}

.top {
  transform: rotateX(90deg) translateZ(100px);
}

.bottom {
  transform: rotateX(-90deg) translateZ(100px);
}

@keyframes rotate-cube {

  /* Ensure this animation name is unique to avoid conflict */
  0% {
    transform: rotateX(-20deg) rotateY(0deg);
  }

  100% {
    transform: rotateX(-20deg) rotateY(360deg);
  }
}

.hero-grid:hover .wireframe-cube {
  animation-play-state: paused;
}

.hero-grid:hover .face {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Ensure Ambient Blobs are definitely hidden if any markup remains */
.ambient-blob {
  display: none !important;
  opacity: 0 !important;
}



/* 
   ===================================
   CENTERED HERO LAYOUT (Media Wilkens Style)
   =================================== 
*/

.hero-grid.centered-hero {
  grid-template-columns: 1fr !important;
  text-align: center !important;
  position: relative;
  overflow: hidden;
  /* Contain the background cube */
  padding: 40px 0;
}

.centered-text {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  /* Text above wireframe */
}

.hero-description {
  margin-left: auto !important;
  margin-right: auto !important;
}

.centered-actions {
  justify-content: center !important;
}

/* Background Wireframe Container */
.wireframe-background-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.15;
  /* Subtle background effect */
  pointer-events: none;
}

/* Adjust Cube Size for Background */
.wireframe-background-container .wireframe-cube {
  width: 400px;
  height: 400px;
}

.wireframe-background-container .face {
  width: 400px;
  height: 400px;
  border-color: rgba(255, 255, 255, 0.3);
}

.wireframe-background-container .front {
  transform: translateZ(200px);
}

.wireframe-background-container .back {
  transform: rotateY(180deg) translateZ(200px);
}

.wireframe-background-container .right {
  transform: rotateY(90deg) translateZ(200px);
}

.wireframe-background-container .left {
  transform: rotateY(-90deg) translateZ(200px);
}

.wireframe-background-container .top {
  transform: rotateX(90deg) translateZ(200px);
}

.wireframe-background-container .bottom {
  transform: rotateX(-90deg) translateZ(200px);
}

h1 {
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

p {
  margin: 0;
  color: var(--muted)
}

/* Hourglass */
.hg {
  width: 54px;
  height: 78px;
  margin: 28px auto 0;
  display: block;
  animation: flip 2.4s infinite ease-in-out;
  transform-origin: 50% 50%
}

.sand-top {
  transform-origin: 32px 24px;
  animation: drain 2.4s infinite linear
}

.sand-bottom {
  transform-origin: 32px 56px;
  animation: fill 2.4s infinite linear
}

.sand-stream {
  opacity: 0;
  animation: stream 2.4s infinite linear
}

@keyframes flip {

  0%,
  45% {
    transform: rotate(0)
  }

  55%,
  100% {
    transform: rotate(180deg)
  }
}

@keyframes drain {
  0% {
    transform: scaleY(1)
  }

  45%,
  55% {
    transform: scaleY(0)
  }

  100% {
    transform: scaleY(1)
  }
}

@keyframes fill {
  0% {
    transform: scaleY(0)
  }

  45%,
  55% {
    transform: scaleY(1)
  }

  100% {
    transform: scaleY(0)
  }
}

@keyframes stream {

  0%,
  45%,
  55%,
  100% {
    opacity: 0
  }

  10%,
  35% {
    opacity: 1
  }
}

/* NEWS – vertikaler Feed */
#news.view.active {
  display: block;
  padding: 120px 24px 120px;
  min-height: 100vh;
}

.news-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.1s;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.news-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
}

.news-header p {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
}

.news-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.news-card {
  background: rgba(13, 13, 13, .75);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 48px 40px;
  backdrop-filter: blur(12px);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-card:hover::before {
  opacity: 1;
}

.news-card:nth-child(1) {
  animation-delay: 0.2s;
}

.news-card:nth-child(2) {
  animation-delay: 0.3s;
}

.news-card:nth-child(3) {
  animation-delay: 0.4s;
}

.news-card:nth-child(4) {
  animation-delay: 0.5s;
}

.news-card:nth-child(5) {
  animation-delay: 0.6s;
}

.news-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .15);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(255, 255, 255, .3);
  filter: brightness(1.1);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.news-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, .1);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

.news-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}

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

.news-card time {
  font-size: 13px;
  color: rgba(207, 207, 207, .7);
  font-style: italic;
}

/* Content Sections */
.content-section {
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.1s;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 600px;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

@media (max-width: 1200px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 48px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 255, 255, 0.35);
  filter: brightness(1.1);
}

.icon-frame {
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card:hover .icon-frame {
  transform: scale(1.1) translateY(-5px);
}

.feature-icon-svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: white;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-svg {
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
  stroke-width: 1.8;
  transform: scale(1.1);
  stroke: #fff;
}

.feature-card h3 {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #fff;
}

.feature-card p {
  margin: 0;
  color: #a1a1aa;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-top: auto;
}

.learn-more-link:hover {
  opacity: 0.8;
}

.learn-more-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.learn-more-link:hover::after {
  transform: translateX(4px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section */
.about-content {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.1s;
}

.about-intro {
  font-size: 19px;
  line-height: 2;
  color: var(--muted);
  margin: 0;
}

/* Statistiken Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin: 0 0 100px 0;
}

.stat-card {
  background: rgba(13, 13, 13, .75);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.stat-card:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
  animation-delay: 0.4s;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .18);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .6),
    0 0 60px rgba(255, 255, 255, .4);
  filter: brightness(1.15);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 0%, #cfcfcf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, .3));
}

.stat-label {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}

/* Mission & Vision Grid */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin: 0 0 100px 0;
}

.mission-card {
  background: rgba(13, 13, 13, .75);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.mission-card:nth-child(1) {
  animation-delay: 0.1s;
}

.mission-card:nth-child(2) {
  animation-delay: 0.2s;
}

.mission-card:nth-child(3) {
  animation-delay: 0.3s;
}

.mission-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .15);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .6),
    0 0 60px rgba(255, 255, 255, .4);
  filter: brightness(1.1);
}

.mv-icon {
  font-size: 52px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, .1));
  transition: all 0.3s ease;
}

.mission-card:hover .mv-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, .2));
}

.mission-card h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.mission-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

/* Testimonials Section */
.testimonials-section {
  margin: 0 0 100px 0;
}

.testimonials-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 60px;
  color: #fff;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.1s;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: rgba(13, 13, 13, .75);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .15);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .6),
    0 0 60px rgba(255, 255, 255, .3);
  filter: brightness(1.1);
}

.stars {
  font-size: 20px;
  letter-spacing: 2px;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, .3));
  transition: all 0.3s ease;
}

.testimonial-card:hover .stars {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, .5));
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.testimonial-author strong {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 13px;
}

/* About CTA */
.about-cta {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.3s;
}

.about-cta h3 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}

.about-cta p {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 28px;
}

.cta-button {
  background: #fff;
  color: #000;
  border: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 255, 255, .15);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, .25);
  background: #f5f5f5;
}

/* Kontaktformular */
.section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  min-height: calc(100vh - 160px);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info-card,
.contact-form-card {
  padding: 40px;
  background: rgba(13, 13, 13, .75);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.contact-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon-frame {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-shrink: 0;
}

.contact-icon-frame svg {
  width: 20px;
  height: 20px;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
}

.contact-item-text .label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-item-text a,
.contact-item-text strong {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item-text a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.contact-form-card .cta-button {
  margin-top: 10px;
  width: fit-content !important;
  align-self: flex-end;
}

.form-footer {
  display: flex;
  justify-content: center;
}

.form-row {
  margin-bottom: 32px;
  position: relative;
}

label {
  display: block;
  font-size: 14px;
  color: #fff;
  margin: 0 0 8px;
  font-weight: 500;
}

.input-wrapper {
  position: relative;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  outline: none;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
}

input:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .05);
}

input::placeholder,
textarea::placeholder {
  color: rgba(207, 207, 207, .5);
}

textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

button.btn {
  width: 100%;
  padding: 16px 24px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, .25);
  background: #f5f5f5;
}

.notice {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}

/* Site Footer (Static Signature) */
.site-footer {
  padding: 60px 24px 120px;
  /* Extra bottom padding for legal bar */
  text-align: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.site-footer p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Legal-Bar */
.legalbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #999;
  font-size: 12px;
}

.legalbar .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.legal-links,
.legal-contact {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.legalbar a {
  color: #fff;
  text-decoration: none;
  opacity: .9
}

.legalbar a:hover {
  opacity: 1;
  text-decoration: underline
}

.has-legal {
  padding-bottom: 52px
}

@media (max-width: 1200px) {
  .hero-full-panel {
    padding: 32px 40px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-title {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 16px !important;
  }

  .hero-description {
    margin-bottom: 24px !important;
    font-size: 16px;
  }
}

@media (max-width:992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 40px !important;
  }

  .hero-text {
    order: 2;
  }

  .hero-image-container {
    order: 1;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-image-frame {
    max-width: 300px;
  }
}

/* Media Queries */
@media (max-width:768px) {
  .nav {
    top: 10px;
    right: 10px;
    left: 10px;
    justify-content: space-around;
    padding: 6px 8px;
    gap: 6px;
  }

  .nav a {
    font-size: 13px;
    padding: 8px 12px;
  }

  .header-logo {
    width: 110px;
    top: 16px;
    left: 16px;
  }

  .view.active {
    padding-top: 100px !important;
    padding-bottom: 80px !important;
  }

  .content-section {
    padding: 80px 20px 80px;
    min-height: auto;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    margin-bottom: 60px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #news.view.active {
    padding-bottom: 100px;
  }

  .wrap {
    padding: 30px 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 0 60px 0;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 36px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .testimonials-title {
    font-size: 26px;
  }

  .about-cta h3 {
    font-size: 26px;
  }

  .cta-button {
    padding: 14px 32px;
    font-size: 15px;
  }

  .news-header h2 {
    font-size: 32px;
  }

  .news-header {
    margin-bottom: 60px;
  }

  .news-grid {
    gap: 28px;
  }

  .news-card {
    padding: 32px 28px;
  }

  .contact-header h2 {
    font-size: 32px;
  }

  .contact-header {
    margin-bottom: 50px;
  }

  .card {
    padding: 36px 28px;
  }
}

@media (max-width:640px) {
  .legalbar .inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav {
    gap: 4px;
    padding: 6px 8px;
  }

  .nav a {
    font-size: 11px;
    padding: 10px 12px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .header-logo {
    width: 90px;
    top: 12px;
    left: 12px;
  }

  .logo {
    width: clamp(180px, 50vw, 260px) !important;
  }

  .wrap {
    padding: 20px 16px;
  }

  h1 {
    font-size: 24px;
  }

  .section-title {
    font-size: 24px !important;
  }

  .section-subtitle {
    font-size: 15px;
    margin-bottom: 50px !important;
  }

  .content-section {
    padding: 70px 16px 70px !important;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 28px 20px;
  }

  .mission-vision-grid {
    gap: 20px;
  }

  .mission-card {
    padding: 28px 20px;
  }

  .testimonials-grid {
    gap: 20px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .feature-grid {
    gap: 20px;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .news-card {
    padding: 24px 20px;
  }

  .news-card h3 {
    font-size: 19px;
  }

  .news-grid {
    gap: 24px;
  }

  #news.view.active {
    padding: 90px 16px 90px;
  }

  .card {
    padding: 28px 20px;
  }

  .cta-button {
    padding: 14px 28px;
    width: 100%;
  }

  button.btn {
    font-size: 15px;
  }
}

/* Extra kleine Handys */
@media (max-width:480px) {
  .nav {
    padding: 5px 6px;
    gap: 3px;
  }

  .nav a {
    font-size: 10px;
    padding: 7px 8px;
  }

  .header-logo {
    width: 80px;
  }

  .logo {
    width: clamp(160px, 55vw, 220px) !important;
  }

  h1 {
    font-size: 22px;
  }

  .section-title {
    font-size: 22px !important;
  }

  .about-intro {
    font-size: 16px;
  }

  .news-card h3 {
    font-size: 18px;
  }

  .feature-card h3,
  .mission-card h3 {
    font-size: 19px;
  }
}

/* Touch-Geräte Optimierung */
@media (hover: none) and (pointer: coarse) {

  .feature-card:hover,
  .stat-card:hover,
  .mission-card:hover,
  .testimonial-card:hover,
  .news-card:hover,
  .card:hover {
    transform: none;
  }

  .feature-card:active,
  .stat-card:active,
  .mission-card:active,
  .testimonial-card:active,
  .news-card:active {
    transform: scale(0.98);
  }
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 60px;
}

@media (max-width: 1200px) {
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.journey-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Glass-Gleam Effect */
.journey-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.03),
      transparent);
  transform: skewX(-20deg);
  transition: left 0.8s ease;
  pointer-events: none;
}

.journey-card:hover::after {
  left: 150%;
}

.journey-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 255, 255, 0.35);
  z-index: 10;
}


.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  width: 100%;
}

.journey-icon-frame {
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes iconBreathe {

  0%,
  100% {
    box-shadow: 0 0 0px transparent;
  }

  50% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  }
}

.journey-svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.journey-svg-custom {
  width: 28px;
  height: 28px;
  display: block;
}

.journey-card:hover .journey-icon-frame {
  transform: scale(1.1) translateY(-5px);
}

.journey-number {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.journey-title {
  font-size: 22px;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.bento-featured .journey-title,
.bento-vision .journey-title {
  font-size: 32px;
}

.journey-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  flex-grow: 1;
}

.journey-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  width: fit-content;
  font-weight: 700;
}

/* Enhanced Hover */
.journey-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4),
    0 0 100px rgba(255, 255, 255, 0.03);
}

#about::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 1024px) {

  .bento-featured,
  .bento-tech,
  .bento-design,
  .bento-vision {
    grid-column: span 12;
  }
}

/* MODAL SYSTEM */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: min(900px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  padding: 60px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.orbit-center {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 20px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.digital-core-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.core-ring-1 {
  animation: pulseRotate 8s linear infinite;
  transform-origin: center;
}

.core-ring-2 {
  animation: pulseRotate 12s linear reverse infinite;
  transform-origin: center;
}

.orbit-ring.outer-ring {
  width: 250px;
  height: 250px;
  opacity: 0.05;
  animation-duration: 30s;
}

@keyframes pulseRotate {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(360deg);
    opacity: 0.5;
  }
}

.dot-3 {
  bottom: 15%;
  left: -10%;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  color: #fff;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.modal-header .icon-frame {
  margin-bottom: 0;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-header .icon-frame .feature-icon-svg {
  width: 48px;
  height: 48px;
}

.modal-header .icon-frame svg {
  width: 32px;
  height: 32px;
}

.modal-title-group {
  display: flex;
  flex-direction: column;
}

.modal-content h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 1.4;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.modal-info-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
}

.modal-info-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: -0.01em;
}

.modal-info-box p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.modal-info-box p strong {
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.modal-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.modal-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.3);
}

.modal-footer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.modal-back-btn {
  background: #fff;
  color: #000;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-back-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

@media (max-width: 850px) {
  .modal-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .modal-content {
    padding: 40px 24px;
  }
}

/* ===========================
   MOBILE & TABLET RESPONSIVENESS - REFINED
   Design bleibt identisch, nur proportional angepasst
   =========================== */

/* Tablet (iPad) - 768px to 1200px */
@media (max-width: 1200px) and (min-width: 769px) {
  .hero-full-panel {
    padding: 40px;
  }

  .hero-grid {
    gap: 40px;
  }

  .contact-layout {
    gap: 24px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 32px;
  }
}

/* Mobile Landscape & Small Tablets - 640px to 768px */
@media (max-width: 768px) {

  /* Hero Section - Stack vertically but keep design */
  .hero-full-panel {
    padding: 32px 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-image-container {
    order: 2;
  }

  .hero-greeting {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .hero-title {
    font-size: clamp(28px, 7vw, 42px);
  }

  .hero-description {
    font-size: 15px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-button,
  .secondary-button {
    padding: 14px 28px;
    font-size: 15px;
  }

  .hero-image-frame {
    max-width: 260px;
  }

  /* Section Headers - Keep style, adjust size */
  .section-header {
    margin-bottom: 32px;
    padding: 28px;
  }

  .section-title {
    font-size: clamp(26px, 6vw, 36px);
  }

  .section-subtitle {
    font-size: 15px;
  }

  /* Contact Section - Stack but keep glass design */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 28px 24px;
  }

  .contact-card-title {
    font-size: 19px;
  }

  /* Stats Grid - 2 columns, keep design */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 32px;
  }

  /* Journey Cards - Single column */
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .journey-card {
    padding: 28px 24px;
  }

  /* Feature Cards - Single column */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 36px 28px;
  }

  /* News Grid */
  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-card {
    padding: 28px 24px;
  }
}

/* Mobile Portrait - Below 640px */
@media (max-width: 640px) {

  /* Hero - Smaller but same style */
  .hero-full-panel {
    padding: 24px 20px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-title {
    font-size: clamp(24px, 8vw, 36px);
    margin-bottom: 16px !important;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px !important;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .cta-button,
  .secondary-button {
    width: 100%;
    padding: 14px 24px;
  }

  .hero-image-frame {
    max-width: 220px;
  }

  /* Header Logo */
  .header-logo {
    width: 100px;
    left: 16px;
  }

  /* Section Spacing */
  .view.active {
    padding-top: 80px !important;
    padding-bottom: 70px !important;
  }

  .section-header {
    margin-bottom: 28px;
    padding: 24px 20px;
  }

  .section-title {
    font-size: clamp(22px, 7vw, 32px);
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  /* Contact */
  .contact-info-card,
  .contact-form-card {
    padding: 24px 20px;
  }

  .contact-card-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .contact-icon-frame {
    width: 36px;
    height: 36px;
  }

  .contact-item {
    gap: 12px;
    margin-bottom: 16px;
  }

  .contact-item-text .label {
    font-size: 11px;
  }

  .contact-item-text a,
  .contact-item-text strong {
    font-size: 14px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  /* Form Elements */
  input,
  textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  label {
    font-size: 13px;
  }

  .form-row {
    margin-bottom: 18px;
  }

  button.btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  .notice {
    font-size: 12px;
    margin-top: 16px;
  }

  /* Stats Grid - 2 columns */
  .stats-grid {
    gap: 12px;
  }

  .stat-card {
    padding: 20px 16px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  /* Journey Cards */
  .journey-card {
    padding: 24px 20px;
  }

  .journey-icon-frame {
    width: 52px;
    height: 52px;
  }

  .journey-title {
    font-size: 18px;
  }

  .journey-text {
    font-size: 14px;
  }

  /* Feature Cards */
  .feature-card {
    padding: 28px 24px;
  }

  .icon-frame {
    width: 60px;
    height: 60px;
  }

  .feature-icon-svg {
    width: 36px;
    height: 36px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 14px;
  }

  /* News Cards */
  .news-card {
    padding: 24px 20px;
  }

  .news-card h3 {
    font-size: 18px;
  }

  .news-card p {
    font-size: 14px;
  }

  /* Legal Bar */
  .legalbar {
    padding: 16px;
    font-size: 11px;
  }

  .legalbar .inner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .legal-links {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* Extra Small Phones - Below 400px */
@media (max-width: 400px) {
  .hero-title {
    font-size: clamp(22px, 9vw, 30px);
  }

  .section-title {
    font-size: clamp(20px, 8vw, 28px);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

  /* Ensure touch targets */
  .cta-button,
  .secondary-button,
  .social-link {
    min-height: 44px;
    min-width: 44px;
  }

  /* Disable hover animations on touch */
  .hero-grid:hover .hero-image {
    transform: none;
  }

  .feature-card:hover,
  .journey-card:hover,
  .stat-card:hover,
  .news-card:hover {
    transform: none;
  }

  /* Active states for touch */
  .cta-button:active,
  .secondary-button:active,
  .feature-card:active,
  .journey-card:active {
    transform: scale(0.98);
  }
}

/* ===========================
   MOBILE & TABLET RESPONSIVENESS
   =========================== */
/* Tablet (iPad) - 768px to 1200px */
@media (max-width: 1200px) and (min-width: 769px) {
  .hero-full-panel {
    padding: 40px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-title {
    font-size: clamp(36px, 5vw, 56px);
  }

  .contact-layout {
    gap: 24px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 32px;
  }
}

/* Mobile Landscape & Small Tablets - 640px to 768px */
@media (max-width: 768px) {

  /* Hero Section - Stack vertically */
  .hero-full-panel {
    padding: 32px 24px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-image-container {
    order: 2;
  }

  .hero-greeting {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
    letter-spacing: -2px !important;
  }

  .hero-description {
    font-size: 16px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-image-frame {
    max-width: 280px;
  }

  /* Navigation */
  .nav {
    gap: 6px;
    padding: 6px 10px;
  }

  .nav a {
    font-size: 13px;
    padding: 10px 14px;
  }

  /* Section Headers */
  .section-header {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .section-subtitle {
    font-size: 16px;
  }

  /* Contact Section - Stack vertically */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 28px;
  }

  .contact-card-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  /* Stats Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 32px;
  }

  /* Journey/About Cards */
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .journey-card {
    padding: 28px 20px;
  }

  /* Feature/Service Cards */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 36px 24px;
  }

  /* News Grid */
  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Modal */
  .modal-content {
    padding: 32px 20px;
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Portrait - Below 640px */
@media (max-width: 640px) {

  /* Further reduce padding */
  .hero-full-panel {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-title {
    font-size: clamp(28px, 9vw, 40px);
    margin-bottom: 16px !important;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px !important;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .cta-button,
  .secondary-button {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }

  .hero-image-frame {
    max-width: 240px;
  }

  /* Header Logo */
  .header-logo {
    width: 100px;
    left: 16px;
  }

  /* Navigation - More compact */
  .nav {
    gap: 4px;
    padding: 6px 8px;
    right: 12px;
  }

  .nav a {
    font-size: 11px;
    padding: 10px 10px;
  }

  /* Section Spacing */
  .view.active {
    padding-top: 70px !important;
    padding-bottom: 60px !important;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-title {
    font-size: clamp(24px, 8vw, 32px);
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  /* Contact Section */
  .contact-info-card,
  .contact-form-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .contact-card-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .contact-icon-frame {
    width: 36px;
    height: 36px;
  }

  .contact-icon-frame svg {
    width: 16px;
    height: 16px;
  }

  .contact-item {
    gap: 12px;
    margin-bottom: 16px;
  }

  .contact-item-text .label {
    font-size: 11px;
  }

  .contact-item-text a,
  .contact-item-text strong {
    font-size: 14px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  /* Form Elements */
  input,
  textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  label {
    font-size: 13px;
  }

  .form-row {
    margin-bottom: 20px;
  }

  .notice {
    font-size: 13px;
    margin-top: 16px;
  }

  /* Stats Grid - Keep 2 columns but smaller */
  .stats-grid {
    gap: 12px;
  }

  .stat-card {
    padding: 20px 12px;
    border-radius: 12px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  /* Journey Cards */
  .journey-card {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .journey-icon-frame {
    width: 48px;
    height: 48px;
  }

  .journey-svg-custom {
    width: 24px;
    height: 24px;
  }

  .journey-number {
    font-size: 11px;
  }

  .journey-title {
    font-size: 18px;
  }

  .journey-text {
    font-size: 14px;
  }

  /* Feature Cards */
  .feature-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .icon-frame {
    width: 56px;
    height: 56px;
  }

  .feature-icon-svg {
    width: 32px;
    height: 32px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 14px;
  }

  /* News Cards */
  .news-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .news-card h3 {
    font-size: 18px;
  }

  .news-card p {
    font-size: 14px;
  }

  /* Legal Bar */
  .legalbar {
    padding: 16px 12px;
    font-size: 11px;
  }

  .legalbar .inner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .legal-links {
    flex-wrap: wrap;
    gap: 8px;
  }

  .legal-links a {
    font-size: 11px;
  }

  /* Modal */
  .modal-content {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .modal-header h2 {
    font-size: 24px;
  }

  .modal-close {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}

/* Extra Small Phones - Below 400px */
@media (max-width: 400px) {
  .hero-title {
    font-size: clamp(24px, 10vw, 32px);
  }

  .hero-description {
    font-size: 14px;
  }

  .nav a {
    font-size: 10px;
    padding: 8px 8px;
  }

  .section-title {
    font-size: clamp(22px, 9vw, 28px);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 16px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

  /* Ensure all interactive elements are at least 44x44px */
  .cta-button,
  .secondary-button,
  .social-link,
  .nav a {
    min-height: 44px;
    min-width: 44px;
  }

  /* Remove hover effects on touch devices */
  .hero-grid:hover .hero-image {
    transform: none;
  }

  .feature-card:hover,
  .journey-card:hover,
  .stat-card:hover,
  .news-card:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  }

  /* Add active states instead */
  .cta-button:active,
  .secondary-button:active {
    transform: scale(0.98);
  }

  .feature-card:active,
  .journey-card:active {
    transform: scale(0.98);
  }
}

/* ===========================
   HAMBURGER MENU (Mobile Only)
   =========================== */

/* Hamburger Button - Hidden on desktop */
.hamburger-btn {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Hamburger Animation */
.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 24px;
  padding: 80px 20px;
}

.mobile-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Show hamburger menu only on mobile (below 768px) */
@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
  }

  .mobile-menu-overlay {
    display: block;
  }

  /* Hide desktop nav on mobile */
  .nav {
    display: none !important;
  }
}

/* Adjust hamburger position on very small screens */
@media (max-width: 640px) {
  .hamburger-btn {
    top: 16px;
    right: 16px;
  }
}

/* News Grid Mobile Centering Fix */
@media (max-width: 768px) {
  .news-grid {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .news-card {
    text-align: left;
    margin: 0 auto;
  }
}


/* Mobile Logo & Hamburger Alignment */
@media (max-width: 768px) {
  .header-logo {
    left: 20px;
    top: 16px;
    /* Adjusted from 20px to better align with 44px button */
    height: 48px;
    /* Fixed height for consistency */
    width: auto;
    max-width: none;
  }

  .hamburger-btn {
    top: 18px;
    right: 20px;
  }
}

@media (max-width: 640px) {
  .header-logo {
    height: 40px;
    left: 16px;
    top: 14px;
    width: auto;
  }

  .hamburger-btn {
    top: 12px;
    right: 16px;
  }
}

/* Smooth transition for hamburger and logo hide/show */
@media (max-width: 768px) {

  .hamburger-btn,
  .header-logo {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
}

/* Modal Mobile Optimization - Better Readability */
@media (max-width: 768px) {
  .modal-content {
    width: 95vw;
    max-height: 85vh;
    padding: 32px 20px;
    margin: 20px auto;
  }

  .modal-header {
    flex-direction: column !important;
    text-align: center !important;
    padding-right: 0 !important;
  }

  .modal-header h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .modal-header p {
    font-size: 14px;
    line-height: 1.5;
  }

  .modal-close {
    width: 40px;
    height: 40px;
    font-size: 28px;
    top: 16px;
    right: 16px;
  }

  .modal-header .icon-frame {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .modal-icon-frame svg {
    width: 32px;
    height: 32px;
  }

  .modal-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .modal-section p,
  .modal-section ul li {
    font-size: 14px;
    line-height: 1.6;
  }

  .modal-grid {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .modal-content {
    padding: 24px 16px;
    border-radius: 12px;
  }



  .modal-header h2 {
    font-size: 20px;
  }

  .modal-header p {
    font-size: 13px;
  }

  .modal-section h3 {
    font-size: 15px;
  }

  .modal-section p,
  .modal-section ul li {
    font-size: 13px;
  }
}

/* --- TOAST NOTIFICATIONS (Unified UI) --- */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  /* Klicks gehen durch, außer auf Toast selbst */
}

.toast {
  background: rgba(25, 25, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  backdrop-filter: blur(12px);
  min-width: 300px;
  pointer-events: auto;
}

.toast.success {
  border-left: 4px solid #4ade80;
}

.toast.error {
  border-left: 4px solid #f87171;
}

.toast span:first-child {
  font-size: 18px;
}

@keyframes toastSlideIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes toastFadeOut {
  to {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
}

/* Mobile Responsive Toasts */
@media (max-width: 768px) {
  .toast-container {
    left: 20px;
    right: 20px;
    bottom: 20px;
    align-items: center;
  }

  .toast {
    width: 100%;
    min-width: auto;
    justify-content: center;
  }
}

/* 
   ===================================
   TESTIMONIALS SECTION 
   =================================== 
*/

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: rgba(13, 13, 13, .8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Pseudo-element for a subtle tech line/accent */
.testimonial-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  opacity: 0.5;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.03);
}

.testimonial-stars {
  color: #fff;
  /* White stars for dark theme */
  margin-bottom: 20px;
  font-size: 18px;
  letter-spacing: 2px;
  opacity: 0.8;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.testimonial-author strong {
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Review Form Input Styles */
.glass-input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  padding: 12px 16px !important;
  border-radius: 8px !important;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #fff !important;
  outline: none;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

select.glass-input option {
  background: #111;
  color: #fff;
}

/* Fix for Select Dropdown to match Text Input */
select.glass-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem !important;
  /* Space for arrow */
}