/* =============================================
   SIGNEX WERBETECHNIK — MAIN STYLESHEET
   ============================================= */

:root {
  --orange: #FF6A00;
  --orange-dim: #cc5500;
  --orange-glow: rgba(255, 106, 0, 0.15);
  --black: #0a0a0a;
  --dark: #111111;
  --surface: #1E1E1E;
  --surface2: #252525;
  --white: #FFFFFF;
  --light: #E5E5E5;
  --muted: #888888;
  --border: rgba(255, 255, 255, 0.07);
  --font: 'Inter', -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* =============================================
   CUSTOM CURSOR
   ============================================= */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), opacity 0.2s;
  mix-blend-mode: normal;
}
.cursor-follower {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,106,0,0.5);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}
body:hover .cursor { opacity: 1; }
.cursor.hovering { width: 0; height: 0; }
.cursor-follower.hovering { width: 56px; height: 56px; border-color: var(--orange); }

/* =============================================
   LOADER
   ============================================= */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo { height: 60px; object-fit: contain; margin-bottom: 32px; animation: pulse 1.5s ease-in-out infinite; }
.loader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px; overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: var(--orange);
  border-radius: 99px;
  width: 0%;
  transition: width 0.05s linear;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.6} }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  padding: 0;
}
.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,106,0,0.15);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img {
  height: 44px; object-fit: contain;
  transition: opacity 0.2s;
}
.nav-logo:hover img { opacity: 0.85; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: 0;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-dim) !important; transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }
.nav-burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 499;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  padding: 24px 40px 32px;
  gap: 8px;
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-link {
  color: rgba(255,255,255,0.8); font-size: 17px; font-weight: 500;
  text-decoration: none; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--orange); }
.mobile-cta {
  margin-top: 16px; padding: 14px !important;
  background: var(--orange); color: var(--white) !important;
  border-radius: 4px; text-align: center; font-weight: 600;
  border: none !important;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 120px 40px 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(30,30,30,0.8) 0%, var(--dark) 70%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 60% 50%, black 0%, transparent 75%);
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,106,0,0.12) 0%, transparent 70%);
  top: -10%; right: -5%;
  animation-delay: 0s;
}
.orb2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,106,0,0.07) 0%, transparent 70%);
  bottom: 10%; right: 25%;
  animation-delay: -3s;
}
.orb3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,150,0,0.06) 0%, transparent 70%);
  top: 30%; left: 60%;
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-20px, -15px) scale(1.05); }
  66% { transform: translate(10px, 20px) scale(0.95); }
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 700px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 700px;
}
.gradient-text {
  background: linear-gradient(135deg, #FF6A00 0%, #FF9A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 44px;
  font-weight: 400;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: var(--white);
  padding: 15px 30px;
  border-radius: 4px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,106,0,0.35); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  padding: 15px 30px; border-radius: 4px;
  font-size: 15px; font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.18);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,106,0,0.05); }
.btn-full { width: 100%; justify-content: center; font-size: 16px; padding: 17px; }
.hero-stats {
  display: flex; gap: 48px; align-items: center;
  flex-wrap: wrap;
}
.stat { }
.stat-num {
  font-size: 40px; font-weight: 800;
  color: var(--white); letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.1); }
.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  animation: fadeInUp 1s 2s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* =============================================
   MARQUEE
   ============================================= */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  padding: 0;
}
.marquee-track { display: flex; overflow: hidden; }
.marquee-content {
  display: flex; align-items: center; gap: 32px;
  padding: 20px 0;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.marquee-content .sep { color: var(--orange); font-size: 10px; }
.marquee-content:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 120px 40px; }
.section--dark { background: var(--black); }
.container { max-width: 1280px; margin: 0 auto; }
.section-head { margin-bottom: 72px; max-width: 600px; }
.section-head h2 { margin-top: 12px; }
h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; letter-spacing: -1.5px;
  color: var(--white); line-height: 1.12;
}
.section-sub { font-size: 16px; color: var(--muted); margin-top: 16px; line-height: 1.7; }

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.service-card {
  position: relative;
  background: var(--surface);
  padding: 44px 36px;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s;
}
.service-card:hover { background: var(--surface2); }
.card-glow {
  position: absolute; top: -60px; right: -60px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,106,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  transform: scale(0.5);
  pointer-events: none;
}
.service-card:hover .card-glow { opacity: 1; transform: scale(1); }
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255,106,0,0.3));
  transition: width 0.5s var(--ease);
}
.service-card:hover::after { width: 100%; }
.service-card--featured { background: var(--surface2); }
.service-card--featured::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,106,0,0.06), transparent 60%);
  pointer-events: none;
}
.service-num {
  font-size: 11px; font-weight: 700;
  color: rgba(255,106,0,0.5); letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.service-icon {
  width: 48px; height: 48px;
  background: rgba(255,106,0,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s, transform 0.3s;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--orange); }
.service-card:hover .service-icon { background: rgba(255,106,0,0.18); transform: scale(1.08); }
.service-card h3 {
  font-size: 18px; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.card-arrow {
  font-size: 18px; color: var(--orange);
  margin-top: 24px;
  transform: translateX(-4px);
  opacity: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s;
  display: inline-block;
}
.service-card:hover .card-arrow { transform: translateX(0); opacity: 1; }

/* =============================================
   REFERENZEN
   ============================================= */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ref-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.ref-card:hover {
  border-color: rgba(255,106,0,0.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.ref-visual {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.ref-visual--1 { background: radial-gradient(ellipse at center, #1a1500, #0e0e0e); }
.ref-visual--2 { background: radial-gradient(ellipse at center, #1a0800, #0e0e0e); }
.ref-visual--3 { background: radial-gradient(ellipse at center, #0a0f1a, #0e0e0e); }
.ref-icon { transition: transform 0.4s var(--ease); }
.ref-card:hover .ref-icon { transform: scale(1.1); }
.ref-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 2px;
}
.ref-body { padding: 24px 28px; }
.ref-body h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.ref-body p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.ref-meta {
  display: flex; gap: 16px; margin-top: 16px;
  padding-top: 16px; border-top: 1px solid var(--border);
  font-size: 12px; color: rgba(255,106,0,0.7); font-weight: 600;
  letter-spacing: 0.05em;
}

/* =============================================
   WARUM SIGNEX
   ============================================= */
.why-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.why-items { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(255,106,0,0.12); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  transition: background 0.2s, transform 0.2s;
}
.why-icon svg { stroke: var(--orange); }
.why-item:hover .why-icon { background: rgba(255,106,0,0.2); transform: scale(1.1); }
.why-item h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: -20px; right: 20px;
  font-size: 120px; color: rgba(255,106,0,0.06);
  font-family: Georgia, serif; line-height: 1;
  pointer-events: none;
}
.stars { font-size: 18px; color: var(--orange); margin-bottom: 16px; letter-spacing: 2px; }
blockquote { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.7; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #FF9A00);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--white); }
.testimonial-author span { font-size: 13px; color: var(--muted); }
.stats-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.stat-row { }
.stat-bar-label {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--muted);
  margin-bottom: 8px;
}
.pct { color: var(--orange); font-weight: 700; }
.stat-bar-track {
  height: 4px; background: rgba(255,255,255,0.06);
  border-radius: 99px; overflow: hidden;
}
.stat-bar-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), #FF9A00);
  width: 0%; transition: width 1.2s var(--ease);
}

/* =============================================
   KONTAKT
   ============================================= */
.kontakt-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.kontakt-left p { color: var(--muted); margin-top: 16px; font-size: 16px; line-height: 1.7; }
.contact-info { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,106,0,0.1); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.contact-icon svg { stroke: var(--orange); }
.contact-item:hover .contact-icon { background: rgba(255,106,0,0.18); }
.contact-label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.contact-item strong { display: block; font-size: 15px; color: var(--white); font-weight: 500; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.7); letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 13px 16px;
  color: var(--white); font-family: var(--font);
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' 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 14px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-group select option { background: var(--surface); color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,106,0,0.04);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0; margin-top: 2px;
  accent-color: var(--orange);
  cursor: pointer; padding: 0;
}
.form-check label { font-size: 13px; color: var(--muted); cursor: pointer; }
.form-check label a { color: var(--orange); }
.form-success, .form-error {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; border-radius: 4px;
  font-size: 14px;
}
.form-success { background: rgba(34,197,94,0.1); color: #86efac; border: 1px solid rgba(34,197,94,0.2); }
.form-error { background: rgba(239,68,68,0.1); color: #fca5a5; border: 1px solid rgba(239,68,68,0.2); }
.btn-spinner .spinner-arc { animation: spin 0.8s linear infinite; transform-origin: center; }
@keyframes spin { from{stroke-dasharray:0 100;stroke-dashoffset:0} to{stroke-dasharray:80 100;stroke-dashoffset:-20} }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 0 40px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .footer-logo { height: 48px; object-fit: contain; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding: 24px 0;
  font-size: 13px; color: rgba(255,255,255,0.25);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.45s !important; }
[style*="--d:0"] { transition-delay: 0s !important; }
[style*="--d:1"] { transition-delay: 0.08s !important; }
[style*="--d:2"] { transition-delay: 0.16s !important; }
[style*="--d:3"] { transition-delay: 0.24s !important; }
[style*="--d:4"] { transition-delay: 0.32s !important; }
[style*="--d:5"] { transition-delay: 0.40s !important; }

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
  .why-layout { grid-template-columns: 1fr; gap: 48px; }
  .kontakt-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .section { padding: 80px 24px; }
  .hero { padding: 100px 24px 60px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { padding: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .footer { padding: 0 24px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .cursor, .cursor-follower { display: none; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
}
@media (max-width: 480px) {
  .hero-title { letter-spacing: -2px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
