/* ============================================================
   TecDevio Website – "Avola-Inspired Agency Bold"
   Design: Helle/Dunkle Sektionen, Lime-Grün Akzente,
           Große Typografie, Marquee, Service-Karten
   Fonts: Space Grotesk (Headlines), DM Sans (Body)
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg-light: #f5f5f0;
  --color-bg-dark: #0d0d0d;
  --color-bg-card: #1a1a1a;
  --color-lime: #c8ff00;
  --color-lime-dark: #a8d900;
  --color-orange: #ff6b35;
  --color-white: #ffffff;
  --color-gray-100: #f0f0eb;
  --color-gray-200: #e0e0db;
  --color-gray-400: #999999;
  --color-gray-600: #666666;
  --color-gray-800: #333333;
  --color-text-dark: #0d0d0d;
  --color-text-light: #f5f5f0;
  --color-text-muted: #999999;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --container-max: 1280px;
  --container-padding: 2rem;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === GLOBAL SECTION HEADLINES (Hero-Style) === */
.section-hero-heading {
  margin-bottom: 1.5rem;
}

.section-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.section-headline--lime {
  color: #c8ff00;
}

.section-headline--cyan {
  color: #00bcd4;
}

.section-headline--white {
  color: var(--color-white);
}

.section-headline--dark {
  color: var(--color-text-dark);
}

.section-headline--anthrazit {
  color: #3a3a3a;
}

.section-headline--outline-lime {
  -webkit-text-stroke: 2px #c8ff00;
  color: transparent;
}

.section-headline--outline-cyan {
  -webkit-text-stroke: 2px #00bcd4;
  color: transparent;
}

.section-headline--outline-white {
  -webkit-text-stroke: 2px rgba(255,255,255,0.6);
  color: transparent;
}

.section-headline--outline-dark {
  -webkit-text-stroke: 2px var(--color-text-dark);
  color: transparent;
}

.section-headline--outline-orange {
  -webkit-text-stroke: 2px #ff6b35;
  color: transparent;
}

.section-headline--anthracite {
  color: #484343;
}

.section-headline--xl {
  font-size: clamp(3.5rem, 9vw, 6.3rem);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: var(--color-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

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

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-orange);
  margin-bottom: 1rem;
}

.section-label--light {
  color: var(--color-lime);
}

.section-label--lime {
  color: var(--color-lime);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-lime);
  color: var(--color-bg-dark);
}

.btn--primary:hover {
  background: var(--color-lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 255, 0, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn--outline:hover {
  border-color: var(--color-lime);
  color: var(--color-lime);
}

.btn--dark {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.btn--dark:hover {
  background: var(--color-gray-800);
  transform: translateY(-2px);
}

.btn--orange {
  background: var(--color-orange);
  color: var(--color-white);
}

.btn--orange:hover {
  background: #e55a28;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* === HEADER / NAVIGATION === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
  background: transparent;
}

.header.scrolled {
  background: rgba(245, 245, 240, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.6rem 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  z-index: 1001;
  text-decoration: none;
}

.header__logo-icon {
  height: 46px;
  width: 46px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.header__logo:hover .header__logo-icon {
  transform: rotate(-8deg) scale(1.08);
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.68rem;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
}

/* Desktop Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-dark);
  transition: color var(--transition-base);
}

.nav__link:hover {
  color: var(--color-orange);
}

.nav__link svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-base);
}

.nav__item:hover .nav__link svg {
  transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--color-white);
  border-radius: 16px;
  padding: 2rem;
  min-width: 600px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-base);
  z-index: 100;
}

.nav__item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.mega-menu__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  transition: background var(--transition-base);
}

.mega-menu__item:hover {
  background: var(--color-gray-100);
}

.mega-menu__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.mega-menu__icon--lime { background: rgba(200, 255, 0, 0.15); }
.mega-menu__icon--orange { background: rgba(255, 107, 53, 0.15); }
.mega-menu__icon--blue { background: rgba(0, 168, 255, 0.15); }
.mega-menu__icon--purple { background: rgba(139, 92, 246, 0.15); }

.mega-menu__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.mega-menu__desc {
  font-size: 0.82rem;
  color: var(--color-gray-600);
  line-height: 1.4;
}

/* Header CTA */
.header__cta {
  z-index: 1001;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-text-dark);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  background: var(--color-bg-light);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 2;
}

/* === TERMINAL WINDOW === */
.hero__terminal-wrap {
  position: relative;
  z-index: 2;
  perspective: 1200px;
}

.terminal {
  background: #1e1e2e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 80px rgba(200, 100, 100, 0.08);
  transform: rotateY(-2deg) rotateX(1deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: terminalFloat 6s ease-in-out infinite;
}

.terminal:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

@keyframes terminalFloat {
  0%, 100% { transform: rotateY(-2deg) rotateX(1deg) translateY(0); }
  50% { transform: rotateY(-2deg) rotateX(1deg) translateY(-8px); }
}

.terminal__header {
  background: #181825;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal__dots {
  display: flex;
  gap: 6px;
}

.terminal__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #45475a;
}

.terminal__dot--red { background: #f38ba8; }
.terminal__dot--yellow { background: #f9e2af; }
.terminal__dot--green { background: #a6e3a1; }

.terminal__title {
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 0.75rem;
  color: #6c7086;
  letter-spacing: 0.02em;
}

.terminal__body {
  padding: 1.25rem 1.5rem;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
  font-size: 0.82rem;
  line-height: 1.75;
  color: #cdd6f4;
  overflow: hidden;
}

.terminal__line {
  white-space: nowrap;
  opacity: 0;
  animation: lineAppear 0.3s ease forwards;
}

.terminal__line:nth-child(1) { animation-delay: 0.3s; }
.terminal__line:nth-child(2) { animation-delay: 0.5s; }
.terminal__line:nth-child(3) { animation-delay: 0.7s; }
.terminal__line:nth-child(4) { animation-delay: 0.85s; }
.terminal__line:nth-child(5) { animation-delay: 1.0s; }
.terminal__line:nth-child(6) { animation-delay: 1.15s; }
.terminal__line:nth-child(7) { animation-delay: 1.3s; }
.terminal__line:nth-child(8) { animation-delay: 1.4s; }
.terminal__line:nth-child(9) { animation-delay: 1.5s; }
.terminal__line:nth-child(10) { animation-delay: 1.6s; }
.terminal__line:nth-child(11) { animation-delay: 1.7s; }
.terminal__line:nth-child(12) { animation-delay: 1.8s; }
.terminal__line:nth-child(13) { animation-delay: 1.9s; }
.terminal__line:nth-child(14) { animation-delay: 2.0s; }
.terminal__line:nth-child(15) { animation-delay: 2.1s; }
.terminal__line:nth-child(16) { animation-delay: 2.2s; }
.terminal__line:nth-child(17) { animation-delay: 2.3s; }
.terminal__line:nth-child(18) { animation-delay: 2.4s; }
.terminal__line:nth-child(19) { animation-delay: 2.5s; }
.terminal__line:nth-child(20) { animation-delay: 2.6s; }
.terminal__line:nth-child(21) { animation-delay: 2.7s; }
.terminal__line:nth-child(22) { animation-delay: 2.8s; }
.terminal__line:nth-child(23) { animation-delay: 2.9s; }
.terminal__line:nth-child(24) { animation-delay: 3.0s; }
.terminal__line:nth-child(25) { animation-delay: 3.1s; }
.terminal__line:nth-child(26) { animation-delay: 3.2s; }
.terminal__line:nth-child(27) { animation-delay: 3.4s; }
.terminal__line:nth-child(28) { animation-delay: 3.6s; }

@keyframes lineAppear {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.terminal__line--empty {
  height: 0.5em;
}

.terminal__line--indent {
  padding-left: 2em;
}

.terminal__line--output {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.5em;
  margin-top: 0.25em;
}

.terminal__line--cursor {
  display: flex;
  align-items: center;
}

.terminal__cursor {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  background: #a6e3a1;
  animation: cursorBlink 1s step-end infinite;
  margin-left: 2px;
}

@keyframes cursorBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Syntax Highlighting – Catppuccin Mocha */
.code-keyword { color: #cba6f7; font-weight: 600; }
.code-module { color: #89b4fa; }
.code-func { color: #f9e2af; }
.code-string { color: #a6e3a1; }
.code-number { color: #fab387; }
.code-comment { color: #6c7086; font-style: italic; }
.code-var { color: #f5c2e7; }
.code-param { color: #f38ba8; }
.code-output { color: #a6e3a1; font-weight: 500; }
.code-prompt { color: #a6e3a1; font-weight: 700; }

.hero__headline {
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 800;
  color: var(--color-lime);
  line-height: 0.95;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.hero__headline--outline {
  -webkit-text-stroke: 2px #00bcd4;
  color: transparent;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 550px;
}

.hero__text {
  font-size: 1.05rem;
  color: var(--color-gray-600);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* === FLOATING PASTEL BLOBS === */
.hero__blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.75;
  will-change: transform;
}

.hero__blob--1 {
  width: clamp(400px, 45vw, 700px);
  height: clamp(400px, 45vw, 700px);
  background: radial-gradient(circle, #a0a0a0 0%, #b8b8b8 40%, transparent 75%);
  top: -15%;
  right: -8%;
  animation: blobFloat1 14s ease-in-out infinite;
}

.hero__blob--2 {
  width: clamp(320px, 36vw, 550px);
  height: clamp(320px, 36vw, 550px);
  background: radial-gradient(circle, #949494 0%, #ababab 40%, transparent 75%);
  bottom: 0%;
  right: 10%;
  animation: blobFloat2 18s ease-in-out infinite;
}

.hero__blob--3 {
  width: clamp(300px, 32vw, 500px);
  height: clamp(300px, 32vw, 500px);
  background: radial-gradient(circle, #aaaaaa 0%, #c0c0c0 40%, transparent 75%);
  top: 25%;
  right: 25%;
  animation: blobFloat3 16s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-40px, 30px) scale(1.05); }
  50% { transform: translate(-20px, -25px) scale(0.95); }
  75% { transform: translate(30px, 15px) scale(1.08); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(35px, -20px) scale(1.06); }
  50% { transform: translate(-30px, 25px) scale(0.94); }
  75% { transform: translate(20px, -35px) scale(1.03); }
}

@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(25px, 20px) scale(1.07); }
  66% { transform: translate(-35px, -15px) scale(0.96); }
}

.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-gray-200);
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  -webkit-text-stroke: 2px #bbbcb8;
  color: transparent;
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: #bbbcb8;
  margin-top: 0.3rem;
}

/* === ABOUT SECTION (dark) === */
.about {
  background: #484343;
  color: #F0FFFF;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;

}

.about__code-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/about-code-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.about__blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160,160,160,0.25) 0%, rgba(120,120,120,0.08) 60%, transparent 80%);
  top: -100px;
  right: -150px;
  filter: blur(60px);
  animation: aboutBlobFloat 16s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.about__blob--left {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,200,200,0.2) 0%, rgba(180,180,180,0.1) 40%, transparent 70%);
  bottom: -150px;
  left: -200px;
  filter: blur(80px);
  animation: aboutBlobFloatLeft 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes aboutBlobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.05); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes aboutBlobFloatLeft {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.08); }
}

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

.about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about__img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about__img:hover img {
  transform: scale(1.05);
}

.about__img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

.about__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
  color: #F0FFFF;
}

.about__text {
  font-size: 1.05rem;
  color: #F0FFFF;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === STATEMENT SECTION (dark) === */
.statement {
  background: var(--color-bg-dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Schräge Fläche 1 – Orange (hinten) */
.statement__shape-1 {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 45%;
  height: 140%;
  background: linear-gradient(160deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.03) 60%, transparent 100%);
  transform: skewY(-12deg);
  z-index: 0;
  pointer-events: none;
}

/* Schräge Fläche 2 – Cyan */
.statement__shape-2 {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 35%;
  height: 120%;
  background: linear-gradient(150deg, rgba(0, 188, 212, 0.06) 0%, rgba(0, 188, 212, 0.02) 50%, transparent 100%);
  transform: skewY(-8deg);
  z-index: 0;
  pointer-events: none;
}

/* 3D-Gitter Canvas */
.statement__grid3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.statement__overlay {
  position: absolute;
  inset: 0;
  background: none;
  z-index: 0;
}

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

.statement__text {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.35;
  max-width: 900px;
}

.statement__text span {
  color: var(--color-lime);
}

.statement__desc {
  font-size: 1rem;
  color: var(--color-gray-400);
  max-width: 600px;
  margin-top: 2rem;
  line-height: 1.7;
}

/* === SERVICES SECTION === */
.services {
  background: var(--color-bg-dark);
  padding: 4rem 0 6rem;
  position: relative;
  overflow: hidden;
}

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

/* Geometrische Vollflächen von links */
.services__geo {
  position: absolute;
  left: -5%;
  pointer-events: none;
  z-index: 0;
}

.services__geo--orange {
  top: 8%;
  width: 320px;
  height: 320px;
  background: rgba(255, 107, 53, 0.12);
  border-radius: 24px;
  transform: rotate(-12deg);
}

.services__geo--cyan {
  top: 35%;
  left: -2%;
  width: 260px;
  height: 260px;
  background: rgba(0, 188, 212, 0.10);
  border-radius: 50%;
  transform: rotate(8deg);
}

.services__geo--yellow {
  top: 62%;
  left: -4%;
  width: 220px;
  height: 380px;
  background: rgba(200, 255, 0, 0.08);
  border-radius: 32px;
  transform: rotate(-6deg);
}

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

.service-card {
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base);
  display: flex;
  flex-direction: column;
  min-height: auto;
}

.service-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.service-card__detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
  opacity: 0;
  padding-top: 0;
}

.service-card__detail.open {
  max-height: 600px;
  opacity: 1;
  padding-top: 2rem;
}

.service-card__detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.service-card__detail-desc h4,
.service-card__detail-points h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}

.service-card__detail-desc p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
}

.service-card__detail-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card__detail-points ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card__detail-points ul li {
  font-size: 0.9rem;
  line-height: 1.8;
  padding-left: 1.8rem;
  position: relative;
  opacity: 0.85;
}

.service-card__detail-points ul li::before {
  content: '{ }';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-lime), var(--color-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card--dark .service-card__detail-points ul li::before {
  background: linear-gradient(135deg, var(--color-lime), var(--color-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card__arrow {
  cursor: pointer;
}

.service-card__arrow.rotated svg {
  transform: rotate(180deg);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card--white {
  background: var(--color-white);
  color: var(--color-text-dark);
}

.service-card--lime {
  background: var(--color-lime);
  color: var(--color-text-dark);
}

.service-card--dark {
  background: var(--color-bg-card);
  color: var(--color-text-light);
}

.service-card__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  max-width: 70%;
}

.service-card__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 70%;
  opacity: 0.8;
}

.service-card__arrow {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
  cursor: pointer;
}

.service-card--white .service-card__arrow {
  border: 1.5px solid var(--color-gray-200);
}

.service-card--lime .service-card__arrow {
  border: 1.5px solid rgba(0,0,0,0.15);
}

.service-card--dark .service-card__arrow {
  border: 1.5px solid rgba(255,255,255,0.15);
}

.service-card:hover .service-card__arrow {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.service-card:hover .service-card__arrow svg {
  stroke: var(--color-white);
}

.service-card__arrow svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.service-card__deco {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 80px;
  height: 80px;
  opacity: 0.15;
}

/* === MARQUEE === */
.marquee {
  background: var(--color-lime);
  padding: 1.2rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee--dark {
  background: var(--color-bg-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.marquee__track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
}

.marquee__item {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-bg-dark);
  white-space: nowrap;
}

.marquee--dark .marquee__item {
  color: var(--color-white);
}

.marquee__separator {
  color: var(--color-orange);
  font-size: 1.2rem;
}

.marquee--dark .marquee__separator {
  color: var(--color-lime);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === TEAM / GROWTH SECTION === */
.growth {
  background: var(--color-bg-light);
  padding: 6rem 0;
}

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

.growth__image {
  border-radius: 20px;
  overflow: hidden;
}

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

/* === KANBAN BOARD (Terminal-Stil) === */
.kanban {
  background: #1e1e2e;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
}

.kanban__header {
  background: #181825;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.kanban__dots {
  display: flex;
  gap: 6px;
}

.kanban__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.kanban__dot--red { background: #f38ba8; }
.kanban__dot--yellow { background: #f9e2af; }
.kanban__dot--green { background: #a6e3a1; }

.kanban__title-bar {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

.kanban__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  padding: 0.8rem;
}

.kanban__column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.kanban__col-header {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kanban__col-header--backlog {
  color: #cba6f7;
  background: rgba(203, 166, 247, 0.08);
}

.kanban__col-header--progress {
  color: #00bcd4;
  background: rgba(0, 188, 212, 0.08);
}

.kanban__col-header--review {
  color: #f9e2af;
  background: rgba(249, 226, 175, 0.08);
}

.kanban__col-header--done {
  color: #c8ff00;
  background: rgba(200, 255, 0, 0.08);
}

.kanban__count {
  font-size: 0.6rem;
  opacity: 0.6;
}

.kanban__card {
  background: #11111b;
  border-radius: 8px;
  padding: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
}

.kanban__card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.kanban__card-tag {
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 0.35rem;
}

.kanban__card-tag--feature {
  color: #00bcd4;
  background: rgba(0, 188, 212, 0.12);
}

.kanban__card-tag--bug {
  color: #f38ba8;
  background: rgba(243, 139, 168, 0.12);
}

.kanban__card-tag--task {
  color: #c8ff00;
  background: rgba(200, 255, 0, 0.1);
}

.kanban__card-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.2rem;
  line-height: 1.3;
  font-family: var(--font-heading);
}

.kanban__card-meta {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.3);
}

.kanban__card-progress {
  margin-top: 0.4rem;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.kanban__card-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #00bcd4, #c8ff00);
  border-radius: 3px;
}

.kanban__card--done {
  opacity: 0.6;
}

.kanban__card--done .kanban__card-title {
  text-decoration: line-through;
  text-decoration-color: rgba(200, 255, 0, 0.3);
}

.growth__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.growth__text {
  font-size: 1.05rem;
  color: var(--color-gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.growth__highlight {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  padding-left: 1rem;
  border-left: 3px solid var(--color-lime);
  margin-bottom: 2rem;
}

/* === PROCESS SECTION === */
.process {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: #f5f5f0;
}

.process__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/process-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}

.process__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 245, 240, 0.6) 0%, rgba(245, 245, 240, 0.3) 50%, rgba(245, 245, 240, 0.7) 100%);
  z-index: 0;
}

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

.process__header {
  margin-bottom: 4rem;
}

.process__subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 650px;
  line-height: 1.7;
  margin-top: 1.5rem;
}

.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process__step {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process__step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(255, 107, 53, 0.12);
}

.process__step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 107, 53, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.process__step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #484343;
  margin-bottom: 0.75rem;
}

.process__step-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
}

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

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

/* === TECH STACK SECTION === */
/* === STANDARDS / SERVICES GRID === */
.standards {
  background: var(--color-bg-light);
  padding: 6rem 0;
}

.standards__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.standards__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.standards__subtitle {
  color: var(--color-gray-600);
  font-size: 1.1rem;
  line-height: 1.7;
}

.standards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.standards__card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  transition: all var(--transition-base);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.standards__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c8ff00, #00bcd4);
  opacity: 1;
}

.standards__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}



.standards__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
}

.standards__icon svg {
  width: 100%;
  height: 100%;
}

.standards__card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.standards__card-desc {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  line-height: 1.65;
}

/* === PROJECTS / PORTFOLIO === */
.projects {
  background: var(--color-bg-light);
  padding: 6rem 0;
}

.projects__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.projects__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-text-dark);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.project-card:hover .project-card__overlay {
  opacity: 1;
}

.project-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-white);
}

.project-card__tag {
  font-size: 0.8rem;
  color: var(--color-lime);
  margin-top: 0.3rem;
}

/* === TESTIMONIALS === */
/* === CASE STUDIES === */
.cases {
  background: var(--color-bg-dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cases.cases--light {
  background: linear-gradient(160deg, #006978 0%, #0097a7 40%, #00acc1 100%);
}

/* 3D Tiefenwirkung Hintergrund */
.cases::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background:
    radial-gradient(ellipse 600px 600px at 15% 30%, rgba(200, 255, 0, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 85% 60%, rgba(0, 188, 212, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 50% 80%, rgba(255, 107, 53, 0.04) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  transform: perspective(800px) rotateX(3deg) rotateY(-2deg);
}

.cases::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 40%, rgba(0, 188, 212, 0.03) 50%, transparent 60%),
    linear-gradient(225deg, transparent 40%, rgba(200, 255, 0, 0.03) 50%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

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

/* Perspektivische 3D-Gitterlinien */
.cases.cases--light::before {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 80px),
    radial-gradient(ellipse 600px 600px at 10% 20%, rgba(200, 255, 0, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 90% 70%, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
  transform: perspective(1000px) rotateX(5deg) rotateY(-3deg);
  top: -30%;
  left: -10%;
  width: 120%;
  height: 160%;
}

.cases__hero-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.cases__headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #c8ff00;
  text-transform: uppercase;
}

.cases__headline--outline {
  -webkit-text-stroke: 2px #00bcd4;
  color: transparent;
  margin-bottom: 1.5rem;
}

.cases__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--color-white);
  margin-bottom: 0.8rem;
  text-align: center;
}

.cases--light .cases__title {
  color: var(--color-white);
}

.cases__subtitle {
  color: var(--color-gray-400);
  font-size: 1.05rem;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cases--light .cases__subtitle {
  color: rgba(255,255,255,0.7);
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-card {
  background: linear-gradient(160deg, #0f2027, #1a2a33, #0d1b21);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(0, 188, 212, 0.12);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.case-card:hover {
  border-color: rgba(0, 188, 212, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 188, 212, 0.08);
}

.cases--light .case-card {
  background: #f5f5f0;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-radius: 16px;
  position: relative;
  backdrop-filter: none;
}

.cases--light .case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c8ff00, #00bcd4);
  border-radius: 16px 16px 0 0;
}

.cases--light .case-card:hover {
  border-color: rgba(0, 188, 212, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background: #f0f0eb;
}

.case-card__badge {
  display: inline-block;
  background: rgba(0, 188, 212, 0.15);
  color: #00bcd4;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  align-self: flex-start;
}

.cases--light .case-card__badge {
  background: rgba(0, 188, 212, 0.12);
  color: #00838f;
}

.case-card__icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

.case-card__icon svg {
  width: 100%;
  height: 100%;
}

.case-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.cases--light .case-card__title {
  color: var(--color-text-dark);
}

.case-card__desc {
  font-size: 0.88rem;
  color: var(--color-gray-400);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  flex: 1;
}

.cases--light .case-card__desc {
  color: var(--color-gray-600);
}

.case-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.case-card__tag {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  white-space: nowrap;
}

.cases--light .case-card__tag {
  color: var(--color-gray-600);
  border-color: rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.04);
}

.case-card__badge-pt {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
}

.case-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: #00bcd4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--transition-base);
}

.case-card__link:hover {
  color: #4dd0e1;
}

.cases--light .case-card__link {
  color: #00838f;
}

.cases--light .case-card__link:hover {
  color: #00acc1;
}

/* CTA Card */
.case-card--cta {
  background: linear-gradient(135deg, #00bcd4, #0097a7);
  border: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.case-card--cta:hover {
  border-color: transparent;
  box-shadow: 0 12px 30px rgba(0, 188, 212, 0.25);
}

.case-card__cta-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-bg-dark);
  margin-bottom: 0.6rem;
}

.case-card__cta-text {
  font-size: 0.92rem;
  color: rgba(13, 13, 13, 0.75);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.case-card__cta-btn {
  display: inline-block;
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition-base);
}

.case-card__cta-btn:hover {
  background: var(--color-white);
  color: var(--color-bg-dark);
}

.cases--light .case-card--cta {
  background: linear-gradient(135deg, #c8ff00, #00bcd4);
  border: none;
  backdrop-filter: none;
}

/* === CONTACT / CTA SECTION === */
.contact {
  background: var(--color-bg-light);
  padding: 6rem 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.contact__text {
  font-size: 1.05rem;
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 255, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-lime-dark);
}

.contact__info-label {
  font-size: 0.82rem;
  color: var(--color-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.contact__info-value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text-dark);
}

/* Contact Form */
.contact-form {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  overflow: visible;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gray-800);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--color-gray-200);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  background: var(--color-bg-light);
  transition: border-color var(--transition-base);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-lime);
  box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Datenschutz-Checkbox */
.form-group--checkbox {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--color-text-dark);
  position: relative;
  overflow: visible;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-custom {
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  margin-top: 3px;
  border: 1.5px solid #bbb;
  border-radius: 3px;
  background: #fff;
  transition: all 0.2s ease;
  position: relative;
  box-sizing: border-box;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: linear-gradient(135deg, var(--color-lime), var(--color-cyan));
  border-color: var(--color-lime);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  display: block;
  position: absolute;
  left: 4px;
  top: 0px;
  width: 4px;
  height: 9px;
  border: solid #0d0d0d;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:focus + .checkbox-custom {
  box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.3);
}

.checkbox-text {
  flex: 1;
  padding-top: 0;
  line-height: 1.5;
}

.checkbox-text a {
  color: var(--color-cyan);
  text-decoration: underline;
  transition: color 0.2s;
}

.checkbox-text a:hover {
  color: var(--color-lime);
}

/* Formular Status-Meldungen */
.form-status {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 500;
}

.form-status--success {
  background: rgba(200, 255, 0, 0.1);
  border: 1px solid var(--color-lime);
  color: #2d5a00;
}

.form-status--error {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid var(--color-orange);
  color: #a83200;
}

/* === FOOTER === */
.footer {
  background: #0a0a0a;
  color: var(--color-text-light);
  padding: 0 0 0;
  position: relative;
  overflow: hidden;
}

/* Glow-Effekte */
.footer__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.footer__glow--1 {
  width: 400px;
  height: 400px;
  background: rgba(200, 255, 0, 0.06);
  top: -100px;
  left: -100px;
}

.footer__glow--2 {
  width: 350px;
  height: 350px;
  background: rgba(0, 188, 212, 0.05);
  bottom: -80px;
  right: -80px;
}

/* CTA-Zeile */
.footer__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.footer__cta-text {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  -webkit-text-stroke: 1.5px var(--color-white);
  color: transparent;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.footer__cursor {
  -webkit-text-stroke: 0;
  color: var(--color-orange);
  font-weight: 800;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--color-lime), var(--color-cyan));
  color: #0a0a0a;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 255, 0, 0.25);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer__logo img {
  height: 36px;
  width: auto;
}

.footer__desc {
  font-size: 0.92rem;
  color: var(--color-gray-400);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__socials {
  display: flex;
  gap: 0.8rem;
}

.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.footer__social:hover {
  border-color: var(--color-lime);
  background: rgba(200, 255, 0, 0.1);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gray-400);
  transition: fill var(--transition-base);
}

.footer__social:hover svg {
  fill: var(--color-lime);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1.2rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__link {
  font-size: 0.9rem;
  color: var(--color-gray-400);
  transition: color var(--transition-base);
}

.footer__link--static {
  cursor: default;
  pointer-events: none;
}

a.footer__link:hover,
.footer__link--interactive:hover {
  color: var(--color-lime);
}

.footer__link--interactive {
  cursor: pointer;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--color-gray-600);
  position: relative;
  z-index: 1;
}

.footer__hours {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-lime);
  margin-top: 1rem;
}

.footer__email-big {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-orange);
  transition: color var(--transition-base);
}

.footer__email-big:hover {
  color: var(--color-lime);
}

/* === SCROLL ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* === MOBILE RESPONSIVE === */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__terminal-wrap {
    max-width: 100%;
  }

  .terminal {
    transform: none;
    animation: none;
  }

  .terminal__body {
    font-size: 0.75rem;
    overflow-x: auto;
  }

  .hero__blob--1 {
    width: 300px;
    height: 300px;
    top: 5%;
    right: -10%;
  }
  .hero__blob--2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 5%;
  }
  .hero__blob--3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 20%;
  }

  .about__grid,
  .growth__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .standards__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1.2rem;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg-light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-base);
    z-index: 1000;
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__link {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .service-card__detail-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card__title {
    max-width: 85%;
  }

  .service-card__desc {
    max-width: 85%;
  }

  .mega-menu {
    position: static;
    transform: none;
    min-width: auto;
    box-shadow: none;
    padding: 1rem;
    display: none;
    background: var(--color-gray-100);
    border-radius: 12px;
    margin-top: 0.5rem;
  }

  .nav__item.open .mega-menu {
    display: block;
  }

  .mega-menu__grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .hero {
    padding: 7rem 0 3rem;
    min-height: auto;
  }

  .hero__headline {
    font-size: clamp(2.5rem, 12vw, 4.5rem);
  }

  .terminal__body {
    font-size: 0.7rem;
    padding: 1rem;
  }

  .terminal__line--indent {
    padding-left: 1.5em;
  }

  .hero__stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .standards__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

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

  .projects__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__cta {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: clamp(2rem, 14vw, 3.5rem);
  }

  .hero__stat-number {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.8rem;
    flex-direction: column;
    gap: 1.5rem;
  }

  .service-card__title,
  .service-card__desc {
    max-width: 100%;
  }
}

/* === UTILITY === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
