/* ═══════════════════════════════════════════════════
   ERDBEWEGUNGEN HOFBERGER – Dark Industrial Design
   Farbschema: Schwarz + Amber/Gold
   ═══════════════════════════════════════════════════ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&display=swap');

/* ─── Design Tokens ─── */
:root {
  /* Colors */
  --bg:           #0e0e0e;
  --bg-card:      #161616;
  --bg-card-hover:#1c1c1c;
  --bg-elevated:  #1a1a1a;
  --surface:      #222222;
  --border:       #2a2a2a;
  --border-hover: #3a3a3a;

  --amber:        #F5A623;
  --amber-light:  #FFD080;
  --amber-dark:   #C4841A;
  --amber-glow:   rgba(245,166,35,.15);

  --text:         #ffffff;
  --text-secondary:#999999;
  --text-muted:   #666666;

  /* Typography */
  --font-body:    'Inter', -apple-system, sans-serif;
  --font-head:    'Oswald', 'Impact', sans-serif;

  /* Spacing */
  --section-pad:  6rem 0;
  --container:    1280px;
  --radius:       4px;
  --radius-lg:    8px;

  /* Transitions */
  --ease:         cubic-bezier(.4,0,.2,1);
  --speed:        .35s;
}

/* ─── Reset ─── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body {
  font-family:var(--font-body);
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
  overflow-x:hidden;
}
a { color:var(--amber); text-decoration:none; transition:color var(--speed) var(--ease); }
a:hover { color:var(--amber-light); }
img { max-width:100%; height:auto; display:block; }
ul { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }

/* ─── Container ─── */
.container {
  width:min(var(--container), 92%);
  margin:0 auto;
}

/* ─── Buttons ─── */
.btn {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.9rem 2rem;
  font-family:var(--font-head);
  font-size:.9rem; font-weight:600;
  letter-spacing:.12em; text-transform:uppercase;
  border-radius:var(--radius);
  transition:all var(--speed) var(--ease);
  cursor:pointer; border:none;
}
.btn svg { width:18px; height:18px; }
.btn-amber {
  background:var(--amber); color:#000;
}
.btn-amber:hover {
  background:var(--amber-light); color:#000;
  transform:translateY(-2px);
  box-shadow:0 8px 32px rgba(245,166,35,.3);
}
.btn-outline {
  background:transparent; color:var(--amber);
  border:2px solid var(--amber);
}
.btn-outline:hover {
  background:var(--amber); color:#000;
  transform:translateY(-2px);
}
.btn-dark {
  background:var(--surface); color:var(--text);
  border:1px solid var(--border);
}
.btn-dark:hover {
  border-color:var(--amber);
  color:var(--amber);
  transform:translateY(-2px);
}

/* ═══════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════ */
.preloader {
  position:fixed; inset:0; z-index:9999;
  background:var(--bg);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .6s var(--ease), visibility .6s;
}
.preloader.hidden { opacity:0; visibility:hidden; pointer-events:none; }
.preloader-inner { text-align:center; }
.preloader-text {
  font-family:var(--font-head);
  font-size:1.5rem; font-weight:700;
  letter-spacing:.15em; text-transform:uppercase;
  color:var(--amber);
  margin-bottom:1.5rem;
}
.preloader-bar { width:200px; height:3px; background:var(--surface); border-radius:2px; overflow:hidden; }
.preloader-bar-fill {
  height:100%; background:var(--amber); border-radius:2px;
  animation:preloaderFill 1.2s var(--ease) forwards;
}
@keyframes preloaderFill { 0%{width:0} 100%{width:100%} }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
#nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:1rem 0;
  transition:all var(--speed) var(--ease);
}
#nav.scrolled {
  background:rgba(14,14,14,.95);
  backdrop-filter:blur(20px);
  padding:.7rem 0;
  border-bottom:1px solid var(--border);
}
.nav-inner {
  width:min(var(--container), 92%);
  margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
}
.nav-brand {
  display:flex; align-items:center; gap:.6rem;
  text-decoration:none;
}
.nav-brand-icon {
  width:40px; height:40px;
  background:var(--amber);
  border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head);
  font-weight:700; font-size:1.1rem; color:#000;
}
.nav-brand-text {
  font-family:var(--font-head);
  font-size:.85rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--text);
  line-height:1.2;
}
.nav-brand-text span { color:var(--amber); }

.nav-links { display:flex; align-items:center; gap:2rem; }
.nav-links a {
  font-size:.8rem; font-weight:500;
  letter-spacing:.08em; text-transform:uppercase;
  color:#fff;
  transition:color var(--speed) var(--ease);
  position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:2px; background:var(--amber);
  transition:width var(--speed) var(--ease);
}
.nav-links a:hover, .nav-links a.active { color:var(--amber); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }

.nav-cta {
  padding:.6rem 1.5rem !important;
  border:2px solid var(--amber) !important;
  color:var(--amber) !important;
  border-radius:var(--radius) !important;
  font-family:var(--font-head) !important;
  font-weight:600 !important;
}
.nav-cta:hover {
  background:var(--amber) !important;
  color:#000 !important;
}
.nav-cta::after { display:none !important; }

/* Nav Dropdown */
.nav-dropdown { position:relative; }
.nav-dropdown > a { cursor:pointer; }
.nav-dropdown > a .dropdown-arrow {
  display:inline-block; margin-left:4px;
  font-size:.65em; transition:transform var(--speed) var(--ease);
}
.nav-dropdown:hover > a .dropdown-arrow { transform:rotate(180deg); }
.nav-dropdown-menu {
  position:absolute; top:calc(100% + 12px); left:50%; transform:translateX(-50%);
  min-width:220px; padding:.5rem 0;
  background:rgba(20,20,20,.97); border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius); backdrop-filter:blur(20px);
  opacity:0; visibility:hidden; pointer-events:none;
  transition:all .25s var(--ease);
  z-index:100;
}
.nav-dropdown-menu::before {
  content:''; position:absolute; top:-8px; left:50%; transform:translateX(-50%);
  border:8px solid transparent; border-bottom-color:rgba(20,20,20,.97);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity:1; visibility:visible; pointer-events:auto;
  top:calc(100% + 6px);
}
.nav-dropdown-menu a {
  display:block !important; padding:.55rem 1.2rem !important;
  font-size:.72rem !important; letter-spacing:.06em !important;
  color:rgba(255,255,255,.75) !important; white-space:nowrap;
  transition:all .15s ease !important;
}
.nav-dropdown-menu a::after { display:none !important; }
.nav-dropdown-menu a:hover {
  color:var(--amber) !important; background:rgba(255,255,255,.04) !important;
  padding-left:1.5rem !important;
}

/* Mobile overlay dropdown sub-items */
.nav-mobile-sub { display:none; flex-direction:column; gap:.8rem; margin-top:.5rem; }
.nav-mobile-sub.active { display:flex; }
.nav-mobile-sub a {
  font-size:1.1rem !important; font-weight:400 !important;
  color:rgba(255,255,255,.6) !important; padding-left:1.5rem;
}
.nav-mobile-sub a:hover { color:var(--amber) !important; }
.nav-mobile-toggle-sub {
  background:none; border:none; color:var(--text); cursor:pointer;
  font-family:var(--font-head); font-size:2rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
}
.nav-mobile-toggle-sub:hover { color:var(--amber); }
.nav-mobile-toggle-sub .dropdown-arrow {
  display:inline-block; font-size:.65em; margin-left:.3rem;
  transition:transform var(--speed) var(--ease);
}
.nav-mobile-toggle-sub.active .dropdown-arrow { transform:rotate(180deg); }

/* Mobile Toggle */
.nav-toggle {
  display:none;
  flex-direction:column; gap:5px;
  width:28px; padding:4px 0;
  z-index:1001;
}
.nav-toggle span {
  display:block; height:2px; background:var(--text);
  border-radius:2px; transition:all var(--speed) var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity:0; }
.nav-toggle.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* Mobile Overlay */
.nav-mobile-overlay {
  position:fixed; inset:0; z-index:999;
  background:rgba(14,14,14,.98);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:2rem;
  opacity:0; visibility:hidden;
  transition:all var(--speed) var(--ease);
}
.nav-mobile-overlay.active { opacity:1; visibility:visible; }
.nav-mobile-overlay a {
  font-family:var(--font-head);
  font-size:2rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--text);
}
.nav-mobile-overlay a:hover { color:var(--amber); }

@media(max-width:900px) {
  .nav-links { display:none; }
  .nav-toggle { display:flex; }
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
#hero {
  position:relative;
  height:100vh; min-height:600px;
  display:flex; align-items:center;
  overflow:hidden;
}
#hero .hero-bg {
  position:absolute;
  top:0; left:0; right:0; bottom:0;
  width:100%; height:100%;
  background:#000;
  z-index:0;
}
#hero .hero-bg img {
  width:100%; height:100%;
  max-width:none;
  object-fit:cover;
  object-position:center center;
  display:block;
}
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(
    to right,
    rgba(14,14,14,.92) 0%,
    rgba(14,14,14,.7) 50%,
    rgba(14,14,14,.4) 100%
  );
}
/* Diagonal amber stripe */
.hero-stripe {
  position:absolute; bottom:0; left:0; right:0;
  height:120px;
  background:linear-gradient(
    -3deg,
    var(--bg) 50%,
    transparent 50%
  );
  z-index:2;
}
.hero-stripe::before {
  content:'';
  position:absolute; bottom:0; left:0; right:0;
  height:130px;
  background:linear-gradient(
    -3deg,
    transparent 49.5%,
    var(--amber) 49.5%,
    var(--amber) 50.5%,
    transparent 50.5%
  );
}

.hero-content {
  position:relative; z-index:3;
  width:min(var(--container), 92%);
  margin:0 auto;
  padding-top:4rem;
}
.hero-kicker {
  font-family:var(--font-head);
  font-size:.85rem; font-weight:600;
  letter-spacing:.25em; text-transform:uppercase;
  color:var(--amber);
  margin-bottom:1rem;
  display:flex; align-items:center; gap:1rem;
}
.hero-kicker::before {
  content:''; width:40px; height:2px;
  background:var(--amber);
}
.hero-title {
  font-family:var(--font-head);
  font-size:clamp(3rem, 8vw, 6.5rem);
  font-weight:700;
  line-height:.95;
  text-transform:uppercase;
  letter-spacing:-.02em;
  margin-bottom:1.5rem;
}
.hero-title span {
  display:block;
  color:var(--amber);
}
.hero-subtitle {
  font-size:1.15rem;
  color:var(--text-secondary);
  max-width:550px;
  line-height:1.7;
  margin-bottom:2.5rem;
}
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; }

.hero-scroll {
  position:absolute; bottom:2rem; left:50%; z-index:3;
  transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:.5rem;
}
.hero-scroll span {
  font-size:.65rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--text-muted);
}
.hero-scroll-line {
  width:1px; height:40px; background:var(--amber);
  animation:scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:.3; transform:scaleY(.6); }
  50% { opacity:1; transform:scaleY(1); }
}

/* ═══════════════════════════════════════
   STATS BAR (scrolling ticker style)
   ═══════════════════════════════════════ */
#stats {
  background:var(--amber);
  padding:1.5rem 0;
  position:relative;
  overflow:hidden;
}
.stats-ticker {
  display:flex;
  animation:tickerScroll 20s linear infinite;
}
.stats-ticker-item {
  display:flex; align-items:center; gap:.5rem;
  white-space:nowrap;
  padding:0 2.5rem;
  font-family:var(--font-head);
  font-size:1rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  color:#000;
}
.stats-ticker-item .dot {
  width:6px; height:6px;
  background:#000; border-radius:50%;
  opacity:.4;
}
@keyframes tickerScroll {
  0% { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}

/* ═══════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════ */
.section-header { margin-bottom:3.5rem; }
.section-label {
  font-family:var(--font-head);
  font-size:.75rem; font-weight:600;
  letter-spacing:.25em; text-transform:uppercase;
  color:var(--amber);
  margin-bottom:.75rem;
  display:flex; align-items:center; gap:.75rem;
}
.section-label::before {
  content:''; width:30px; height:2px;
  background:var(--amber);
}
.section-title {
  font-family:var(--font-head);
  font-size:clamp(2rem, 4vw, 3.2rem);
  font-weight:700; text-transform:uppercase;
  line-height:1.1; letter-spacing:-.01em;
}
.section-title span { color:var(--amber); }
.section-text {
  font-size:1.05rem; color:var(--text-secondary);
  max-width:600px; margin-top:1rem; line-height:1.8;
}
.text-center { text-align:center; }
.text-center .section-label { justify-content:center; }
.text-center .section-label::before { display:none; }
.text-center .section-text { margin-left:auto; margin-right:auto; }

/* ═══════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════ */
#about { padding:var(--section-pad); }
.about-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
}
.about-images { position:relative; }
.about-img-main {
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
}
.about-badge {
  position:absolute; bottom:-1.5rem; right:-1rem;
  background:var(--amber);
  color:#000;
  padding:1.2rem 1.5rem;
  border-radius:var(--radius-lg);
  text-align:center;
}
.about-badge-num {
  display:block;
  font-family:var(--font-head);
  font-size:2.2rem; font-weight:700;
  line-height:1;
}
.about-badge-text {
  font-size:.7rem; font-weight:600;
  letter-spacing:.05em; text-transform:uppercase;
  line-height:1.4;
}

.about-features { margin-top:2rem; display:flex; flex-direction:column; gap:1.25rem; }
.about-feature {
  display:flex; align-items:flex-start; gap:1rem;
  padding:1rem 1.25rem;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  transition:border-color var(--speed) var(--ease);
}
.about-feature:hover { border-color:var(--amber); }
.about-feature-icon {
  width:42px; height:42px; flex-shrink:0;
  background:var(--amber-glow);
  border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center;
}
.about-feature-icon svg {
  width:20px; height:20px; stroke:var(--amber); fill:none; stroke-width:2;
}
.about-feature-text strong {
  display:block; font-size:.9rem; font-weight:600; margin-bottom:.2rem;
}
.about-feature-text span {
  font-size:.85rem; color:var(--text-secondary); line-height:1.6;
}

@media(max-width:900px) {
  .about-grid { grid-template-columns:1fr; gap:2.5rem; }
}

/* ═══════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════ */
#services { padding:var(--section-pad); }
.services-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1.5rem;
  margin-top:2rem;
}
.service-card {
  position:relative;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:all var(--speed) var(--ease);
  display:block; color:inherit;
}
.service-card:hover {
  border-color:var(--amber);
  transform:translateY(-6px);
  box-shadow:0 16px 48px rgba(245,166,35,.1);
}
.service-card-img {
  position:relative; overflow:hidden;
  aspect-ratio:4/3;
}
.service-card-img img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s var(--ease);
}
.service-card:hover .service-card-img img {
  transform:scale(1.08);
}
.service-card-overlay {
  position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(14,14,14,.8) 100%);
}
.service-card-icon {
  position:absolute; top:1rem; right:1rem;
  width:40px; height:40px;
  background:var(--amber);
  border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform:translateY(-8px);
  transition:all var(--speed) var(--ease);
}
.service-card:hover .service-card-icon {
  opacity:1; transform:translateY(0);
}
.service-card-icon svg {
  width:18px; height:18px; stroke:#000; fill:none; stroke-width:2.5;
}
.service-card-body { padding:1.25rem 1.5rem 1.5rem; }
.service-card-name {
  font-family:var(--font-head);
  font-size:1.15rem; font-weight:600;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:.4rem;
}
.service-card-desc {
  font-size:.85rem; color:var(--text-secondary);
  line-height:1.6;
}
.service-card-link {
  display:inline-flex; align-items:center; gap:.4rem;
  margin-top:.8rem;
  font-size:.8rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase;
  color:var(--amber);
}

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

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
#cta-banner {
  padding:5rem 0;
  background:var(--bg-card);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  position:relative;
  overflow:hidden;
}
#cta-banner::before {
  content:'';
  position:absolute; top:-50%; right:-20%;
  width:600px; height:600px;
  background:radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
  pointer-events:none;
}
.cta-content {
  text-align:center;
  position:relative; z-index:1;
}
.cta-content h2 {
  font-family:var(--font-head);
  font-size:clamp(2rem, 5vw, 3.5rem);
  font-weight:700; text-transform:uppercase;
  margin-bottom:1rem;
}
.cta-content p {
  font-size:1.1rem; color:var(--text-secondary);
  max-width:500px; margin:0 auto 2rem;
}
.cta-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* ═══════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════ */
#contact { padding:var(--section-pad); }
.contact-grid {
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:4rem;
  align-items:start;
}
.contact-info { margin-top:2rem; display:flex; flex-direction:column; gap:1.25rem; }
.contact-info-item {
  display:flex; align-items:center; gap:1rem;
  padding:1rem 1.25rem;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
}
.contact-info-icon {
  width:42px; height:42px; flex-shrink:0;
  background:var(--amber-glow);
  border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center;
}
.contact-info-icon svg {
  width:20px; height:20px; stroke:var(--amber); fill:none; stroke-width:2;
}
.contact-info-label {
  display:block; font-size:.7rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--text-muted); margin-bottom:.1rem;
}
.contact-info-value {
  font-size:.95rem; color:var(--text);
}
.contact-info-value a { color:var(--text); }
.contact-info-value a:hover { color:var(--amber); }

/* Contact Form */
.contact-form {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:2.5rem;
}
.contact-form-label {
  font-size:.65rem; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--amber); margin-bottom:.5rem;
}
.contact-form-title {
  font-family:var(--font-head);
  font-size:1.5rem; font-weight:700;
  text-transform:uppercase;
  margin-bottom:2rem;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:1rem; }
.form-group { margin-bottom:1rem; }
.form-group label {
  display:block; font-size:.75rem; font-weight:600;
  letter-spacing:.05em; text-transform:uppercase;
  color:var(--text-secondary); margin-bottom:.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:.85rem 1rem;
  background:var(--bg); color:var(--text);
  border:1px solid var(--border);
  border-radius:var(--radius);
  font-family:var(--font-body);
  font-size:.9rem;
  transition:border-color var(--speed) var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline:none;
  border-color:var(--amber);
  box-shadow:0 0 0 3px var(--amber-glow);
}
.form-group textarea { min-height:120px; resize:vertical; }
.form-group select { cursor:pointer; }

/* Honeypot */
.form-hp { position:absolute; left:-9999px; }

/* Success State */
.form-success {
  text-align:center; padding:3rem 2rem;
}
.form-success-icon {
  width:60px; height:60px; margin:0 auto 1.5rem;
  background:var(--amber);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; color:#000;
}
.form-success h3 { font-family:var(--font-head); font-size:1.3rem; margin-bottom:.5rem; }
.form-success p { color:var(--text-secondary); }

@media(max-width:900px) {
  .contact-grid { grid-template-columns:1fr; gap:2.5rem; }
  .form-row { grid-template-columns:1fr; }
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
#footer {
  background:var(--bg-card);
  border-top:1px solid var(--border);
  padding:4rem 0 0;
}
.footer-grid {
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.2fr;
  gap:3rem;
  padding-bottom:3rem;
}
.footer-brand {
  display:flex; align-items:center; gap:.6rem;
  margin-bottom:1rem;
}
.footer-brand-icon {
  width:36px; height:36px;
  background:var(--amber);
  border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head);
  font-weight:700; font-size:1rem; color:#000;
}
.footer-brand-text {
  font-family:var(--font-head);
  font-size:.8rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase;
  color:var(--text);
}
.footer-tagline {
  font-size:.9rem; color:var(--text-secondary);
  line-height:1.7; margin-bottom:1.5rem;
}
.footer-col-title {
  font-family:var(--font-head);
  font-size:.8rem; font-weight:600;
  letter-spacing:.15em; text-transform:uppercase;
  color:var(--amber);
  margin-bottom:1.25rem;
}
.footer-links { display:flex; flex-direction:column; gap:.6rem; }
.footer-links a {
  font-size:.9rem; color:var(--text-secondary);
  transition:color var(--speed) var(--ease);
}
.footer-links a:hover { color:var(--amber); }

.footer-contact-list { display:flex; flex-direction:column; gap:.8rem; }
.footer-contact-item {
  display:flex; align-items:center; gap:.75rem;
  font-size:.9rem; color:var(--text-secondary);
}
.footer-contact-item svg {
  width:16px; height:16px; flex-shrink:0;
  stroke:var(--amber); fill:none; stroke-width:2;
}
.footer-contact-item a { color:var(--text-secondary); }
.footer-contact-item a:hover { color:var(--amber); }

.footer-bottom {
  border-top:1px solid var(--border);
  padding:1.5rem 0;
  display:flex; align-items:center; justify-content:space-between;
}
.footer-copy { font-size:.8rem; color:var(--text-muted); }
.footer-bottom-links { display:flex; gap:1.5rem; }
.footer-bottom-links a { font-size:.8rem; color:var(--text-muted); }
.footer-bottom-links a:hover { color:var(--amber); }

@media(max-width:900px) {
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:600px) {
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:.8rem; text-align:center; }
}

/* ═══════════════════════════════════════
   WHATSAPP FAB
   ═══════════════════════════════════════ */
.whatsapp-fab {
  position:fixed; bottom:1.5rem; right:1.5rem; z-index:900;
  width:56px; height:56px;
  background:#25d366; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.3);
  transition:all var(--speed) var(--ease);
}
.whatsapp-fab:hover {
  transform:scale(1.1);
  box-shadow:0 6px 30px rgba(37,211,102,.4);
}
.whatsapp-fab svg { width:28px; height:28px; fill:#fff; }
.whatsapp-fab-tooltip {
  position:absolute; right:70px; top:50%; transform:translateY(-50%);
  background:#333; color:#fff;
  padding:.5rem 1rem; border-radius:var(--radius);
  font-size:.8rem; white-space:nowrap;
  opacity:0; pointer-events:none;
  transition:opacity var(--speed) var(--ease);
}
.whatsapp-fab:hover .whatsapp-fab-tooltip { opacity:1; }

/* ═══════════════════════════════════════
   MOBILE CTA BAR
   ═══════════════════════════════════════ */
.mobile-cta-bar {
  display:none;
  position:fixed; bottom:0; left:0; right:0; z-index:800;
  background:rgba(14,14,14,.95);
  backdrop-filter:blur(20px);
  border-top:1px solid var(--border);
  padding:.6rem 1rem;
}
.mobile-cta-bar-inner {
  display:flex; align-items:center; justify-content:center; gap:.5rem;
}
.mobile-cta-btn {
  flex:1;
  display:flex; align-items:center; justify-content:center; gap:.5rem;
  padding:.7rem;
  font-size:.8rem; font-weight:600;
  text-transform:uppercase; letter-spacing:.05em;
  color:var(--text); border-radius:var(--radius);
  transition:all var(--speed) var(--ease);
}
.mobile-cta-btn:hover { color:var(--amber); }
.mobile-cta-btn svg {
  width:18px; height:18px;
  stroke:var(--amber); fill:none; stroke-width:2;
}
.mobile-cta-divider {
  width:1px; height:24px;
  background:var(--border);
}
@media(max-width:768px) {
  .mobile-cta-bar { display:block; }
  .whatsapp-fab { bottom:5rem; }
  body { padding-bottom:60px; }
}

/* ═══════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity:0; transform:translateY(30px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }
.reveal-delay-4 { transition-delay:.4s; }

/* ═══════════════════════════════════════
   SUBPAGE HERO
   ═══════════════════════════════════════ */
.subpage-hero {
  position:relative;
  height:50vh; min-height:350px;
  display:flex; align-items:flex-end;
  overflow:hidden;
}
.subpage-hero-bg {
  position:absolute; inset:0;
}
.subpage-hero-bg img {
  width:100%; height:100%; object-fit:cover;
}
.subpage-hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(14,14,14,.4) 0%, rgba(14,14,14,.9) 100%);
}
.subpage-hero-content {
  position:relative; z-index:2;
  width:min(var(--container), 92%);
  margin:0 auto;
  padding-bottom:3rem;
}
.subpage-hero-content .section-label { margin-bottom:.5rem; }
.subpage-hero-content h1 {
  font-family:var(--font-head);
  font-size:clamp(2.5rem, 5vw, 4rem);
  font-weight:700; text-transform:uppercase;
  line-height:1.05;
}

/* ═══════════════════════════════════════
   LEISTUNGEN PAGE – Detailed Cards
   ═══════════════════════════════════════ */
.leistungen-detail { padding:var(--section-pad); }
.leistung-item {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
  margin-bottom:5rem;
  padding-bottom:5rem;
  border-bottom:1px solid var(--border);
}
.leistung-item:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.leistung-item:nth-child(even) { direction:rtl; }
.leistung-item:nth-child(even) > * { direction:ltr; }
.leistung-img {
  border-radius:var(--radius-lg);
  overflow:hidden; border:1px solid var(--border);
}
.leistung-img img { width:100%; aspect-ratio:4/3; object-fit:cover; }
.leistung-num {
  font-family:var(--font-head);
  font-size:4rem; font-weight:700;
  color:var(--amber); opacity:.3;
  line-height:1; margin-bottom:.5rem;
}
.leistung-title {
  font-family:var(--font-head);
  font-size:1.8rem; font-weight:700;
  text-transform:uppercase;
  margin-bottom:1rem;
}
.leistung-text {
  font-size:1rem; color:var(--text-secondary);
  line-height:1.8; margin-bottom:1.5rem;
}
.leistung-list {
  display:flex; flex-direction:column; gap:.5rem;
  margin-bottom:1.5rem;
}
.leistung-list li {
  font-size:.9rem; color:var(--text-secondary);
  padding-left:1.5rem; position:relative;
}
.leistung-list li::before {
  content:''; position:absolute; left:0; top:.55rem;
  width:8px; height:8px;
  background:var(--amber); border-radius:2px;
  transform:rotate(45deg);
}

@media(max-width:900px) {
  .leistung-item { grid-template-columns:1fr; gap:2rem; }
  .leistung-item:nth-child(even) { direction:ltr; }
}

/* ═══════════════════════════════════════
   ÜBER UNS PAGE
   ═══════════════════════════════════════ */
.about-full { padding:var(--section-pad); }
.about-full-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem; align-items:center;
}
.values-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:1.5rem; margin-top:3rem;
}
.value-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:2rem;
  transition:border-color var(--speed) var(--ease);
}
.value-card:hover { border-color:var(--amber); }
.value-card-icon {
  width:48px; height:48px;
  background:var(--amber-glow);
  border-radius:var(--radius);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1rem;
}
.value-card-icon svg { width:22px; height:22px; stroke:var(--amber); fill:none; stroke-width:2; }
.value-card h3 {
  font-family:var(--font-head);
  font-size:1.1rem; font-weight:600;
  text-transform:uppercase;
  margin-bottom:.5rem;
}
.value-card p { font-size:.85rem; color:var(--text-secondary); line-height:1.7; }

@media(max-width:900px) {
  .about-full-grid { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:1fr; }
}

/* ═══════════════════════════════════════
   KONTAKT PAGE
   ═══════════════════════════════════════ */
.kontakt-full { padding:var(--section-pad); }

/* ═══════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════ */
.legal-content {
  padding:var(--section-pad);
}
.legal-content h2 {
  font-family:var(--font-head);
  font-size:1.4rem; font-weight:600;
  text-transform:uppercase;
  color:var(--amber);
  margin:2.5rem 0 1rem;
}
.legal-content h3 {
  font-size:1.1rem; font-weight:600;
  margin:1.5rem 0 .75rem;
}
.legal-content p {
  font-size:.95rem; color:var(--text-secondary);
  line-height:1.8; margin-bottom:1rem;
  max-width:800px;
}
.legal-content ul {
  margin-bottom:1rem; padding-left:1.5rem;
}
.legal-content ul li {
  font-size:.95rem; color:var(--text-secondary);
  line-height:1.8;
  list-style:disc;
}
.legal-content a { color:var(--amber); }

/* ═══════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════ */
.page-404 {
  min-height:100vh;
  display:flex; align-items:center; justify-content:center;
  text-align:center; padding:2rem;
}
.page-404-num {
  font-family:var(--font-head);
  font-size:clamp(6rem, 15vw, 12rem);
  font-weight:700; color:var(--amber);
  opacity:.2; line-height:1;
}
.page-404 h1 {
  font-family:var(--font-head);
  font-size:2rem; font-weight:700;
  text-transform:uppercase;
  margin-bottom:1rem;
}
.page-404 p {
  color:var(--text-secondary);
  margin-bottom:2rem;
}

/* ═══════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════ */
.cookie-banner {
  position:fixed; bottom:0; left:0; right:0; z-index:950;
  background:var(--bg-card);
  border-top:1px solid var(--border);
  padding:1.25rem;
  transform:translateY(100%);
  transition:transform .5s var(--ease);
}
.cookie-banner.visible { transform:translateY(0); }
.cookie-inner {
  width:min(var(--container), 92%);
  margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; gap:2rem;
}
.cookie-text { font-size:.85rem; color:var(--text-secondary); }
.cookie-text a { color:var(--amber); }
.cookie-actions { display:flex; gap:.75rem; flex-shrink:0; }
.cookie-btn {
  padding:.6rem 1.5rem;
  font-size:.8rem; font-weight:600;
  letter-spacing:.05em; text-transform:uppercase;
  border-radius:var(--radius);
  cursor:pointer; border:none;
  transition:all var(--speed) var(--ease);
}
.cookie-btn-accept { background:var(--amber); color:#000; }
.cookie-btn-accept:hover { background:var(--amber-light); }
.cookie-btn-decline { background:var(--surface); color:var(--text-secondary); border:1px solid var(--border); }
.cookie-btn-decline:hover { border-color:var(--text-muted); color:var(--text); }

@media(max-width:600px) {
  .cookie-inner { flex-direction:column; text-align:center; }
}

/* ═══════════════════════════════════════
   GOOGLE MAPS
   ═══════════════════════════════════════ */
.map-wrapper {
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--border);
  margin-top:3rem;
}
.map-wrapper iframe {
  width:100%; height:400px; border:none;
  filter:grayscale(.8) contrast(1.1) brightness(.7);
  transition:filter .5s var(--ease);
}
.map-wrapper:hover iframe {
  filter:grayscale(.3) contrast(1) brightness(.85);
}

/* ═══════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════ */
.breadcrumb {
  padding:1rem 0 0;
  margin-top:-.5rem;
}
.breadcrumb-inner {
  width:min(var(--container), 92%);
  margin:0 auto;
  display:flex; align-items:center; gap:.4rem;
  font-size:.75rem;
  color:var(--text-muted);
}
.breadcrumb a {
  color:var(--text-muted);
  transition:color var(--speed) var(--ease);
}
.breadcrumb a:hover { color:var(--amber); }
.breadcrumb .sep { margin:0 .2rem; opacity:.5; }
.breadcrumb .current { color:var(--amber); font-weight:600; }

/* ═══════════════════════════════════════
   SERVICE DETAIL PAGES
   ═══════════════════════════════════════ */
.service-detail { padding:var(--section-pad); }
.service-detail-intro {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:start;
  margin-bottom:5rem;
}
.service-detail-img {
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--border);
  position:sticky; top:100px;
}
.service-detail-img img {
  width:100%; aspect-ratio:4/3; object-fit:cover;
}
.service-detail-body h2 {
  font-family:var(--font-head);
  font-size:1.5rem; font-weight:700;
  text-transform:uppercase;
  margin:2.5rem 0 1rem;
  color:var(--text);
}
.service-detail-body p {
  font-size:1rem; color:var(--text-secondary);
  line-height:1.85; margin-bottom:1rem;
}
.service-detail-body ul {
  margin:1rem 0 1.5rem;
  display:flex; flex-direction:column; gap:.5rem;
}
.service-detail-body ul li {
  font-size:.95rem; color:var(--text-secondary);
  line-height:1.7;
  padding-left:1.5rem; position:relative;
}
.service-detail-body ul li::before {
  content:''; position:absolute; left:0; top:.6rem;
  width:8px; height:8px;
  background:var(--amber); border-radius:2px;
  transform:rotate(45deg);
}

/* Service Features Grid */
.service-features {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1.5rem;
  margin:3rem 0;
}
.service-feature-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:2rem 1.5rem;
  text-align:center;
  transition:all var(--speed) var(--ease);
}
.service-feature-card:hover {
  border-color:var(--amber);
  transform:translateY(-4px);
}
.service-feature-num {
  font-family:var(--font-head);
  font-size:2.5rem; font-weight:700;
  color:var(--amber); opacity:.5;
  line-height:1; margin-bottom:.5rem;
}
.service-feature-card h3 {
  font-family:var(--font-head);
  font-size:1rem; font-weight:600;
  text-transform:uppercase;
  margin-bottom:.5rem;
}
.service-feature-card p {
  font-size:.85rem; color:var(--text-secondary);
  line-height:1.6;
}

/* Process Steps */
.process-steps {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1.5rem;
  margin:2rem 0 3rem;
}
.process-step {
  position:relative;
  padding:1.5rem;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
}
.process-step-num {
  font-family:var(--font-head);
  font-size:3rem; font-weight:700;
  color:var(--amber); opacity:.2;
  position:absolute; top:.5rem; right:1rem;
  line-height:1;
}
.process-step h4 {
  font-family:var(--font-head);
  font-size:.9rem; font-weight:600;
  text-transform:uppercase;
  margin-bottom:.4rem;
  color:var(--amber);
}
.process-step p {
  font-size:.85rem; color:var(--text-secondary);
  line-height:1.6;
}

/* Related Services */
.related-services {
  padding:4rem 0;
  border-top:1px solid var(--border);
  margin-top:2rem;
}
.related-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1.5rem;
  margin-top:2rem;
}
.related-card {
  display:block;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:all var(--speed) var(--ease);
  color:inherit;
}
.related-card:hover {
  border-color:var(--amber);
  transform:translateY(-4px);
}
.related-card-img {
  aspect-ratio:16/9; overflow:hidden;
}
.related-card-img img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .5s var(--ease);
}
.related-card:hover .related-card-img img {
  transform:scale(1.05);
}
.related-card-body {
  padding:1.25rem;
}
.related-card-body h3 {
  font-family:var(--font-head);
  font-size:1rem; font-weight:600;
  text-transform:uppercase;
  margin-bottom:.3rem;
}
.related-card-body span {
  font-size:.8rem; color:var(--amber);
  font-weight:600;
  letter-spacing:.08em; text-transform:uppercase;
}

@media(max-width:900px) {
  .service-detail-intro { grid-template-columns:1fr; gap:2rem; }
  .service-detail-img { position:static; }
  .service-features { grid-template-columns:1fr; }
  .process-steps { grid-template-columns:1fr 1fr; }
  .related-grid { grid-template-columns:1fr; }
}
@media(max-width:600px) {
  .process-steps { grid-template-columns:1fr; }
}

/* ═══════════════════════════════════════
   FAQ PAGE & ACCORDION
   ═══════════════════════════════════════ */
.faq-section { padding:var(--section-pad); }
.faq-list {
  max-width:900px;
  margin:2rem auto 0;
  display:flex; flex-direction:column; gap:1rem;
}
.faq-item {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:border-color var(--speed) var(--ease);
}
.faq-item.open { border-color:var(--amber); }
.faq-question {
  display:flex; align-items:center; justify-content:space-between;
  padding:1.25rem 1.5rem;
  cursor:pointer;
  font-family:var(--font-head);
  font-size:1rem; font-weight:600;
  text-transform:uppercase;
  letter-spacing:.02em;
  color:var(--text);
  transition:color var(--speed) var(--ease);
  user-select:none;
  background:none; border:none; width:100%; text-align:left;
}
.faq-item.open .faq-question { color:var(--amber); }
.faq-icon {
  width:28px; height:28px; flex-shrink:0;
  border:2px solid var(--border);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; font-weight:400;
  color:var(--text-muted);
  transition:all var(--speed) var(--ease);
}
.faq-item.open .faq-icon {
  border-color:var(--amber);
  color:var(--amber);
  transform:rotate(45deg);
}
.faq-answer {
  max-height:0; overflow:hidden;
  transition:max-height .4s var(--ease), padding .4s var(--ease);
}
.faq-item.open .faq-answer {
  max-height:500px;
}
.faq-answer-inner {
  padding:0 1.5rem 1.5rem;
  font-size:.95rem; color:var(--text-secondary);
  line-height:1.8;
}
.faq-answer-inner a { color:var(--amber); }

/* Inline FAQ on service pages */
.service-faq {
  margin:3rem 0;
  padding:3rem 0;
  border-top:1px solid var(--border);
}

/* ═══════════════════════════════════════
   REFERENZEN / PROJECT GALLERY
   ═══════════════════════════════════════ */
.referenzen-section { padding:var(--section-pad); }
.referenzen-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1.5rem;
  margin-top:2rem;
}
.referenz-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:all var(--speed) var(--ease);
}
.referenz-card:hover {
  border-color:var(--amber);
  transform:translateY(-6px);
  box-shadow:0 16px 48px rgba(245,166,35,.1);
}
.referenz-card-img {
  position:relative;
  aspect-ratio:4/3; overflow:hidden;
}
.referenz-card-img img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s var(--ease);
}
.referenz-card:hover .referenz-card-img img {
  transform:scale(1.06);
}
.referenz-card-badge {
  position:absolute; top:1rem; left:1rem;
  background:var(--amber);
  color:#000;
  padding:.3rem .8rem;
  border-radius:var(--radius);
  font-family:var(--font-head);
  font-size:.7rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
}
.referenz-card-body {
  padding:1.5rem;
}
.referenz-card-body h3 {
  font-family:var(--font-head);
  font-size:1.1rem; font-weight:600;
  text-transform:uppercase;
  margin-bottom:.4rem;
}
.referenz-card-meta {
  display:flex; align-items:center; gap:1rem;
  font-size:.8rem; color:var(--text-muted);
  margin-bottom:.6rem;
}
.referenz-card-meta span {
  display:flex; align-items:center; gap:.3rem;
}
.referenz-card-meta svg {
  width:14px; height:14px; stroke:var(--amber); fill:none; stroke-width:2;
}
.referenz-card-body p {
  font-size:.85rem; color:var(--text-secondary);
  line-height:1.6;
}

/* Stats row on referenzen page */
.referenzen-stats {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1.5rem;
  margin:3rem 0;
}
.referenz-stat {
  text-align:center;
  padding:2rem 1rem;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
}
.referenz-stat-num {
  font-family:var(--font-head);
  font-size:2.5rem; font-weight:700;
  color:var(--amber); line-height:1;
  margin-bottom:.3rem;
}
.referenz-stat-label {
  font-size:.75rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--text-muted);
}

@media(max-width:900px) {
  .referenzen-grid { grid-template-columns:1fr 1fr; }
  .referenzen-stats { grid-template-columns:1fr 1fr; }
}
@media(max-width:600px) {
  .referenzen-grid { grid-template-columns:1fr; }
  .referenzen-stats { grid-template-columns:1fr 1fr; }
}
