/* ══════════════════════════════════════════════════════════════════════
   Muri Design — style.css
   Design System: Dark Cyberpunk × Clean Agency
   ══════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300&family=Outfit:wght@200;300;600;800;900&display=swap');

/* ─────────────────────────────── DESIGN TOKENS ─────────────────────────────── */
:root {
  --cyan:    #38BDF8;
  --cyan-2:  #7dd3fc;
  --cyan-3:  #0ea5e9;
  --bg:      #060a14;
  --bg-2:    #0d1a2e;
  --bg-3:    #0f172a;
  --text:    #ffffff;
  --text-2:  #94a3b8;
  --muted:   rgba(56, 189, 248, 0.5);
  --border:  rgba(56, 189, 248, 0.12);
  --border-h: rgba(56, 189, 248, 0.5);
  --sans:    "Outfit", sans-serif;
  --mono:    "DM Mono", monospace;

  --radius:  12px;
  --radius-lg: 20px;
  --nav-h:   68px;
  --glow:    0 0 24px rgba(56, 189, 248, 0.18);
  --glow-lg: 0 0 48px rgba(56, 189, 248, 0.22);
  --shadow:  0 4px 24px rgba(0, 0, 0, 0.4);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-color-scheme: light) {
  :root {
    --bg:      #f8fafc;
    --bg-2:    #e0f2fe;
    --bg-3:    #f0f9ff;
    --text:    #0f172a;
    --text-2:  #475569;
    --border:  rgba(14, 165, 233, 0.15);
    --border-h: rgba(14, 165, 233, 0.5);
    --shadow:  0 4px 24px rgba(0, 0, 0, 0.08);
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }
input, textarea, button { font-family: inherit; }
textarea { resize: vertical; }

/* ─────────────────────────────── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--sans); line-height: 1.1; }

.section-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 540px;
}

/* ─────────────────────────────── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--cyan);
  color: #060a14;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.35);
}

.btn-primary:hover {
  background: var(--cyan-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(56, 189, 248, 0.45);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  border: 1.5px solid var(--border-h);
  color: var(--cyan);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(56, 189, 248, 0.08);
  border-color: var(--cyan);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.btn-block { width: 100%; justify-content: center; }

/* ─────────────────────────────── LAYOUT HELPERS ─────────────────────────────── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

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

/* ─────────────────────────────── NAVIGATION ─────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  overflow: hidden;
  background: rgba(6, 10, 20, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(6, 10, 20, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 32px rgba(0,0,0,0.35);
}

@media (prefers-color-scheme: light) {
  #navbar {
    background: rgba(248, 250, 252, 0.72);
  }
  #navbar.scrolled {
    background: rgba(248, 250, 252, 0.95);
    border-bottom-color: rgba(14, 165, 233, 0.15);
    box-shadow: 0 1px 24px rgba(0,0,0,0.06);
  }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.nav-logo:hover { opacity: 0.8; }

.nav-logo .logo-bracket {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 20px;
  color: var(--cyan);
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 17px;
  color: var(--text);
  padding: 0 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-2);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--cyan);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* ── Lang Picker Dropdown ── */
.lang-picker {
  position: relative;
}

.lang-current-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(56,189,248,0.06);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.lang-current-btn:hover,
.lang-picker.open .lang-current-btn {
  background: rgba(56,189,248,0.12);
  border-color: var(--border-h);
  color: var(--cyan);
}

.lang-flag { font-size: 14px; line-height: 1; }
.lang-code { font-size: 11px; }

.lang-chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  opacity: 0.6;
}
.lang-picker.open .lang-chevron { transform: rotate(180deg); opacity: 1; }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow), var(--glow);
  overflow: hidden;
  transform: translateY(-8px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transform-origin: top right;
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1), opacity 0.2s ease;
  z-index: 100;
}

.lang-picker.open .lang-dropdown {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-2);
  font-family: var(--mono);
  font-size: 12.5px;
  transition: background var(--transition), color var(--transition);
  text-align: left;
}

.lang-option:hover {
  background: rgba(56,189,248,0.08);
  color: var(--text);
}

.lang-option.active {
  color: var(--cyan);
  background: rgba(56,189,248,0.06);
}

.lang-option-flag { font-size: 16px; line-height: 1; }
.lang-option-name { font-size: 12px; }

/* Mobile lang grid */
.mobile-lang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.mobile-lang-opt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--text-2);
  font-family: var(--mono);
  font-size: 13px;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.mobile-lang-opt:hover,
.mobile-lang-opt.active {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(56,189,248,0.06);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--transition);
}

.nav-hamburger:hover { background: rgba(56,189,248,0.08); }

.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 850;
  background: rgba(6, 10, 20, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px 5vw 32px;
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.mobile-menu a {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-menu a:last-of-type { border-bottom: none; }

.mobile-menu a:hover {
  color: var(--cyan);
  padding-left: 8px;
}

.mobile-lang {
  margin-top: 24px;
  justify-content: flex-start;
  gap: 10px;
}

.mobile-lang .lang-btn { font-size: 14px; }

/* ─────────────────────────────── LOGO ─────────────────────────────── */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  user-select: none;
}

.logo-top-row {
  display: flex;
  align-items: center;
  line-height: 1;
}

.logo-bracket {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 44px;
  color: var(--cyan);
  line-height: 1;
  transition: margin 0.1s ease;
}

.logo-br-l { margin-right: 4px; }
.logo-br-r { margin-left: 4px; }

.logo-typed {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 30px;
  color: var(--text);
  line-height: 1;
  min-width: 1px;
  display: inline-block;
}

.logo-line {
  width: 0;
  height: 1.5px;
  background: var(--muted);
  margin-top: 4px;
  transition: width 0.35s ease;
  margin-left: 2px;
}

.logo-sub {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 3px;
  margin-left: 2px;
  min-height: 14px;
}

.logo-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--cyan);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.8s step-end infinite;
}

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

/* ─────────────────────────────── HERO ─────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--bg);
  overflow: hidden;
}

/* Subtle cyan grid */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* Cyan glow orb */
#hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(56,189,248,0.13) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5vw;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.hero-logo { gap: 6px; }

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
}

.hero-content.visible { opacity: 1; }

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 420px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Hero floating stat cards */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 360px;
}

.hero-card-float {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.hero-card-float:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--glow-lg);
  border-color: var(--border-h);
}

.hero-card-1 {
  top: 10%;
  left: 5%;
  animation: float1 6s ease-in-out infinite;
}

.hero-card-2 {
  top: 30%;
  right: 5%;
  animation: float2 7s ease-in-out infinite;
}

.hero-card-3 {
  bottom: 10%;
  left: 15%;
  animation: float3 5.5s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-card-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-card-value {
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.hero-card-sub {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-2);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.scroll-line {
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ─────────────────────────────── SECTIONS COMMON ─────────────────────────────── */
section {
  padding: 120px 0;
  position: relative;
}

#leistungen { background: var(--bg-3); }
#portfolio   { background: var(--bg); }
#ueber-uns   { background: var(--bg-3); }
#kontakt     { background: var(--bg-2); }

/* ─────────────────────────────── LEISTUNGEN ─────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
}

.service-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px rgba(56,189,248,0.2), var(--glow-lg), var(--shadow);
  transform: translateY(-6px);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: rgba(56,189,248,0.15);
  border-color: rgba(56,189,248,0.4);
}

.service-icon { color: var(--cyan); }

.service-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}

.service-punchline {
  font-family: var(--mono);
  font-size: 11px;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}

/* ─────────────────────────────── PORTFOLIO ─────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.portfolio-card:hover {
  border-color: var(--border-h);
  box-shadow: var(--glow-lg), var(--shadow);
  transform: translateY(-6px);
}

/* Mockup Browser */
.portfolio-mockup {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}

.mockup-blue   { background: linear-gradient(145deg, #0f2a4a 0%, #0d1a2e 60%, #060a14 100%); }
.mockup-teal   { background: linear-gradient(145deg, #0a2a2a 0%, #0d1a2e 60%, #060a14 100%); }
.mockup-violet { background: linear-gradient(145deg, #1a0f2e 0%, #0d1a2e 60%, #060a14 100%); }

.mockup-chrome {
  height: 28px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mockup-url {
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  margin-left: 8px;
  letter-spacing: 0.04em;
}

.mockup-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: calc(100% - 28px);
}

.mockup-hero-strip {
  height: 30px;
  border-radius: 6px;
  background: rgba(56,189,248,0.18);
}

.mockup-content-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.mock-line {
  height: 5px;
  border-radius: 99px;
  background: rgba(255,255,255,0.1);
}

.mock-line.w-75 { width: 75%; }
.mock-line.w-60 { width: 60%; }
.mock-line.w-55 { width: 55%; }
.mock-line.w-45 { width: 45%; }
.mock-line.w-80 { width: 80%; }

.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 4px;
}

.mock-card {
  height: 20px;
  border-radius: 4px;
  background: rgba(255,255,255,0.07);
}

.portfolio-info {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.portfolio-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.2);
  padding: 3px 9px;
  border-radius: 99px;
}

.portfolio-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.portfolio-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ─────────────────────────────── ÜBER UNS ─────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.about-desc {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-values li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-2);
}

.value-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

/* Mascot Placeholder */
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mascot-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mascot-robot-stub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  image-rendering: pixelated;
}

.robot-head {
  width: 90px;
  height: 80px;
  background: var(--bg-2);
  border: 2px solid var(--cyan);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(56,189,248,0.2);
}

.robot-antenna {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 16px;
  background: var(--cyan);
}

.antenna-dot {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: antennaPulse 2s ease-in-out infinite;
}

@keyframes antennaPulse {
  0%, 100% { box-shadow: 0 0 4px var(--cyan); opacity: 1; }
  50% { box-shadow: 0 0 12px var(--cyan); opacity: 0.7; }
}

.robot-screen {
  width: 70px;
  height: 54px;
  background: var(--bg-3);
  border: 1.5px solid rgba(56,189,248,0.3);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.robot-eyes {
  display: flex;
  gap: 14px;
}

.robot-eye {
  width: 12px;
  height: 12px;
  background: var(--cyan);
  border-radius: 2px;
  animation: eyeBlink 4s ease-in-out infinite;
}

.robot-eye:nth-child(2) { animation-delay: 0.1s; }

@keyframes eyeBlink {
  0%, 90%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.1); }
}

.robot-mouth {
  width: 28px;
  height: 5px;
  background: transparent;
  border: 1.5px solid var(--cyan);
  border-top: none;
  border-radius: 0 0 4px 4px;
}

.robot-body {
  display: flex;
  align-items: center;
  gap: 4px;
}

.robot-arm {
  width: 10px;
  height: 32px;
  background: var(--bg-2);
  border: 1.5px solid rgba(56,189,248,0.4);
  border-radius: 4px;
}

.robot-torso {
  width: 60px;
  height: 50px;
  background: var(--bg-2);
  border: 2px solid var(--cyan);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.robot-torso::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1.5px solid rgba(56,189,248,0.5);
  box-shadow: 0 0 8px rgba(56,189,248,0.3);
}

.robot-legs {
  display: flex;
  gap: 16px;
}

.robot-leg {
  width: 14px;
  height: 24px;
  background: var(--bg-2);
  border: 1.5px solid rgba(56,189,248,0.4);
  border-radius: 4px;
}

.mascot-caption {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-align: center;
}

/* ─────────────────────────────── KONTAKT ─────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.field-optional {
  color: var(--muted);
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: 0;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(148,163,184,0.4);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--cyan-3);
  box-shadow: 0 0 0 3px rgba(56,189,248,0.12);
}

.form-field input.error,
.form-field textarea.error {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248,113,113,0.1);
}

.form-status {
  min-height: 20px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.form-status.success { color: #4ade80; }
.form-status.error   { color: #f87171; }

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 28px;
}

.contact-direct h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.95rem;
  transition: color var(--transition), gap var(--transition);
}

.contact-link:last-child { border-bottom: none; }
.contact-link svg { color: var(--cyan); flex-shrink: 0; }

.contact-link:hover { color: var(--text); gap: 16px; }

.contact-location {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text-2);
  font-size: 0.95rem;
}

.contact-location svg { color: var(--cyan); flex-shrink: 0; }

/* Promises */
.contact-promises {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.promise-icon-wrap {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.promise-item strong {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 2px;
}

.promise-item span {
  font-size: 0.82rem;
  color: var(--text-2);
}

/* ─────────────────────────────── FOOTER ─────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
}

.footer-logo .logo-bracket {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 20px;
  color: var(--cyan);
}

.footer-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-line {
  width: 80px;
  height: 1.5px;
  background: var(--muted);
}

.footer-tagline span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--text-2);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--cyan); }

.footer-copy {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(148,163,184,0.5);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────── CHAT WIDGET ─────────────────────────────── */
.chat-fab-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
}

.chat-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #060a14;
  box-shadow: 0 4px 20px rgba(56,189,248,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.chat-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(56,189,248,0.3);
  animation: fabPulse 2.5s ease-in-out infinite;
}

@keyframes fabPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0; }
}

.chat-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(56,189,248,0.65);
}

.chat-fab-icon { position: absolute; transition: opacity var(--transition), transform var(--transition); }
.chat-icon-close { opacity: 0; transform: rotate(-90deg); }

.chat-fab.open .chat-icon-open { opacity: 0; transform: rotate(90deg); }
.chat-fab.open .chat-icon-close { opacity: 1; transform: rotate(0); }

.chat-modal {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 799;
  width: 340px;
  max-height: 480px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), var(--glow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transform-origin: bottom right;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.chat-modal.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(56,189,248,0.12);
  border: 1px solid var(--border-h);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.chat-header strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.chat-status {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: #4ade80;
  letter-spacing: 0.05em;
}

.chat-close-btn {
  font-size: 20px;
  color: var(--text-2);
  line-height: 1;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.chat-close-btn:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.55;
}

.chat-msg.bot {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-2);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  background: var(--cyan);
  color: #060a14;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.chat-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 10px 14px;
}

.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: typingDot 1.2s ease-in-out infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-input-row {
  display: flex;
  border-top: 1px solid var(--border);
}

.chat-input-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--text);
}

.chat-input-row input::placeholder { color: rgba(148,163,184,0.35); }

#chat-send {
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  border-left: 1px solid var(--border);
  transition: background var(--transition);
}

#chat-send:hover { background: rgba(56,189,248,0.08); }

/* ─────────────────────────────── LANGUAGE MODAL ─────────────────────────────── */
.lang-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 10, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lang-modal-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.lang-modal-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow), var(--glow-lg);
  transform: translateY(16px);
  transition: transform 0.3s ease;
}

.lang-modal-overlay.visible .lang-modal-box {
  transform: translateY(0);
}

.lang-modal-logo {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 24px;
}

.lang-modal-logo .logo-bracket {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 22px;
  color: var(--cyan);
}

.lang-modal-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.lang-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lang-modal-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-3);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.lang-modal-opt:hover {
  border-color: var(--cyan);
  background: rgba(56,189,248,0.06);
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

.lang-modal-flag { font-size: 2.2rem; line-height: 1; }

.lang-modal-name {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-2);
  transition: color var(--transition);
}

.lang-modal-opt:hover .lang-modal-name { color: var(--cyan); }

/* ─────────────────────────────── SCROLL REVEAL ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 640px) {
  section { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.6rem; }
  .section-title { font-size: 1.9rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-nav { flex-wrap: wrap; gap: 16px; }
  .chat-modal { width: calc(100vw - 24px); right: 12px; }
  .chat-fab-wrap { right: 16px; bottom: 20px; }
  .logo-bracket { font-size: 36px; }
  .logo-typed { font-size: 25px; }
}

@media (max-width: 420px) {
  .hero-headline { font-size: 2.2rem; }
  .logo-bracket { font-size: 30px; }
  .logo-typed { font-size: 21px; }
}

/* ─────────────────────────────── REDUCED MOTION ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
