:root{
  --bg:#0f0f10;
  --bg2:#171718;
  --card:rgba(255,255,255,0.05);
  --border:rgba(255,255,255,0.10);
  --text:#ffffff;
  --muted:rgba(255,255,255,0.70);
  --orange:#ff7a1a;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

@media (prefers-reduced-motion: reduce){
  *{animation:none !important;transition:none !important;scroll-behavior:auto !important;}
}

.container{width:1200px;max-width:92%;margin:0 auto}
.mt16{margin-top:16px}

/* Header */
.header{
  position:fixed;top:0;left:0;right:0;
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.08);
  z-index:100;
  opacity:1;
  transform:none;
  transition:.8s cubic-bezier(.2,.9,.2,1);
}
html.js .header{ opacity:0; transform:translateY(-10px); }
html.js .header.is-in{ opacity:1; transform:translateY(0); }

.header-inner{
  display:flex;justify-content:space-between;align-items:center;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex;align-items:center;gap:10px;
  text-decoration:none;color:var(--text);
  font-weight:800;
}
.brand img{width:34px;height:34px}

.nav a{
  margin-left:18px;
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
  position:relative;
}
.nav a:hover{color:var(--text)}
.nav a.active{color:var(--text)}
.nav a.active::after{
  content:"";
  position:absolute;left:0;right:0;bottom:-8px;height:2px;
  background:var(--orange);
}

.btn{
  padding:10px 16px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.06);
  color:var(--text);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* Mobile Nav */
.nav-desktop{display:flex;align-items:center}
.nav-toggle{
  display:none;
  width:44px;height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.06);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:20px;height:2px;
  margin:5px auto;
  background:rgba(255,255,255,0.85);
  border-radius:999px;
  transition:.25s ease;
}
.nav-mobile{
  display:none;
  position:absolute;
  left:0;right:0;
  top:100%;
  background:rgba(0,0,0,0.92);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.nav-mobile-inner{
  width:1200px;
  max-width:92%;
  margin:0 auto;
  padding:16px 0 22px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.nav-mobile .nav-link{
  color:var(--text);
  text-decoration:none;
  padding:12px 10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.04);
}
.nav-mobile .nav-link:hover{
  border-color:rgba(255,122,26,0.45);
}
.nav-cta{width:100%}

.header.nav-open .nav-mobile{display:block}
.header.nav-open .nav-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.header.nav-open .nav-toggle span:nth-child(2){opacity:0}
.header.nav-open .nav-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Hero */
.hero{
  height:100vh;
  min-height:680px;
  padding-top:80px;
  position:relative;
  overflow:hidden;
}
.hero-video{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  filter:brightness(.5);
  transform:scale(1.05);
  will-change:transform;
}
.hero-overlay{
  position:absolute;inset:0;
  background:
    radial-gradient(700px 500px at 20% 20%, rgba(255,122,26,0.15), transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,.2), rgba(0,0,0,.95));
  will-change:transform;
}
.hero-content{
  position:relative;z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  max-width:760px;
}
.hero-content h1{font-size:56px;letter-spacing:-0.02em;margin-bottom:16px}
.hero-content p{color:var(--muted);margin-bottom:24px}

.hero-actions{display:flex;gap:14px;flex-wrap:wrap}

.btn-primary{
  padding:14px 20px;
  border-radius:999px;
  background:var(--orange);
  color:#111;
  font-weight:800;
  text-decoration:none;
  transition:.25s ease;
  box-shadow:0 20px 45px rgba(255,122,26,.25);
  border:none;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 30px 60px rgba(255,122,26,.35)}

.btn-secondary{
  padding:14px 20px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:800;
  text-decoration:none;
  transition:.25s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn-secondary:hover{transform:translateY(-3px);border-color:rgba(255,122,26,.4)}

.hero-facts{margin-top:24px;display:flex;gap:12px;flex-wrap:wrap}
.fact{
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.1);
  padding:10px 14px;
  border-radius:14px;
  transition:.3s ease;
}
.fact:hover{border-color:rgba(255,122,26,.5);transform:translateY(-2px)}
.fact span{display:block;font-weight:900}

.scroll-cue{
  position:absolute;bottom:30px;left:50%;
  transform:translateX(-50%);
  width:28px;height:44px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  display:flex;justify-content:center;
  padding-top:8px;
}
.scroll-dot{
  width:6px;height:6px;
  background:var(--orange);
  border-radius:50%;
  animation:scrollDot 1.4s infinite;
}
@keyframes scrollDot{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(14px)}
}

.section{padding:100px 0}
.section.dark{background:var(--bg2)}
.section-head h2{font-size:36px;margin-bottom:12px}
.section-head p{color:var(--muted);max-width:800px}

.grid2{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:30px}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:30px}

.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:14px}

.card,.panel,.contact-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  transition:.3s cubic-bezier(.2,.9,.2,1);
}
.card:hover,.panel:hover,.contact-card:hover{
  transform:translateY(-5px);
  border-color:rgba(255,122,26,.5);
  box-shadow:0 30px 70px rgba(0,0,0,.35),
             0 20px 50px rgba(255,122,26,.08);
}

.list{padding-left:18px;color:var(--muted);margin-top:12px}
.muted{color:var(--muted)}
.small{font-size:0.92rem}

.link{color:var(--text);text-decoration:none}
.link:hover{color:var(--orange)}

.gallery{
  margin-top:30px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.gallery img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.1);
  transition:.3s ease;
}
.gallery img:hover{
  transform:translateY(-4px) scale(1.01);
  border-color:rgba(255,122,26,.5);
}

.form label{display:block;margin-bottom:12px;font-weight:600;color:var(--muted)}
.form input,.form textarea{
  width:100%;
  margin-top:6px;
  padding:12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(0,0,0,.25);
  color:var(--text);
}
.form input:focus,.form textarea:focus{
  outline:none;
  border-color:rgba(255,122,26,.6);
  box-shadow:0 0 0 5px rgba(255,122,26,.12);
}
.form-status{margin-top:10px}

.hp{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}

.contact-top{display:flex;align-items:center;gap:12px;margin-bottom:10px}
.avatar{
  width:54px;height:54px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
  color:var(--orange);
  background:rgba(255,122,26,0.18);
  border:1px solid rgba(255,122,26,0.28);
}
.contact-lines p{margin:6px 0}
.tag{
  margin-top:10px;
  display:inline-block;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(0,0,0,0.22);
  color:var(--muted);
}

.page{padding-top:80px}

.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:30px 0;
  background:rgba(0,0,0,.3);
  opacity:1;
  transform:none;
  transition:.8s ease;
}
html.js .footer{ opacity:0; transform:translateY(15px); }
html.js .footer.is-in{ opacity:1; transform:translateY(0); }

.footer-inner{
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;
  gap:10px;
}
.footer-links a{
  margin-left:14px;
  text-decoration:none;
  color:var(--muted);
}
.footer-links a:hover{color:var(--text)}

.reveal{
  opacity:0;
  transform:translateY(20px);
  filter:blur(4px);
  transition:opacity .9s ease,
             transform .9s cubic-bezier(.2,.9,.2,1),
             filter .9s ease;
}
.reveal.reveal-in{
  opacity:1;
  transform:translateY(0);
  filter:blur(0);
}

/* Mobile optimiert */
@media (max-width:980px){
  .grid2,.grid3,.gallery{grid-template-columns:1fr}
  .hero-content h1{font-size:40px}
}

@media (max-width:900px){
  .nav-desktop{display:none}
  .nav-toggle{display:inline-block}
  .hero{min-height:620px}
  .hero-content{max-width:100%}
  .hero-actions a{width:100%}
  .btn-primary,.btn-secondary{width:100%}
  .fact{flex:1; min-width:140px}
  .section{padding:80px 0}
  .gallery img{height:220px}
}

@media (max-width:420px){
  .hero-content h1{font-size:32px}
  .section-head h2{font-size:28px}
  .brand span{display:none}
}