/* ==========================
   RESET
========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

:root{

--green:#7DBA38;
--black:#080808;
--dark:#111111;
--card:#151515;
--text:#ffffff;
--light:#bdbdbd;

}

html{
scroll-behavior:smooth;
}

body{

font-family:'Montserrat',sans-serif;

background:var(--black);

color:white;

overflow-x:hidden;
}

/* ==========================
   HEADER
========================== */

header{

position:fixed;

top:0;
left:0;

width:100%;

height:120px;

padding:0 80px;

display:flex;

align-items:center;
justify-content:space-between;

background:rgba(0,0,0,.75);

backdrop-filter:blur(20px);

z-index:999;
}

.logo img{

height:120px;

width:auto;

object-fit:contain;
}

nav{

display:flex;

gap:40px;
}

nav a{

color:white;

text-decoration:none;

font-weight:600;

transition:.3s;
}

nav a:hover{

color:var(--green);
}

.header-btn{

padding:16px 28px;

border-radius:14px;

background:var(--green);

color:white;

font-weight:700;

text-decoration:none;

transition:.3s;
}

.header-btn:hover{

transform:translateY(-3px);
}

/* ==========================
   HERO
========================== */

.hero{

min-height:100vh;

padding:180px 8% 100px;

display:flex;

align-items:center;
justify-content:space-between;

position:relative;

overflow:hidden;
}

.hero::before{

content:"";

position:absolute;

right:-250px;
top:-250px;

width:900px;
height:900px;

border-radius:50%;

background:

radial-gradient(
circle,
rgba(125,186,56,.18),
transparent 70%
);

z-index:-1;
}

.hero-content{

max-width:650px;

z-index:2;
}

.hero-badge{

display:inline-block;

padding:12px 20px;

border-radius:999px;

background:
rgba(125,186,56,.12);

border:
1px solid rgba(125,186,56,.3);

color:var(--green);

font-weight:700;

margin-bottom:30px;
}

.hero h1{

font-size:85px;

line-height:1.05;

font-weight:800;

margin-bottom:25px;
}

.hero p{

font-size:22px;

line-height:1.8;

color:var(--light);

margin-bottom:40px;
}

.hero-buttons{

display:flex;

gap:20px;
}

.btn-primary{

background:var(--green);

padding:18px 34px;

border-radius:14px;

text-decoration:none;

font-weight:700;

color:white;

transition:.3s;
}

.btn-primary:hover{

transform:translateY(-4px);
}

.btn-secondary{

padding:18px 34px;

border-radius:14px;

border:1px solid #333;

text-decoration:none;

color:white;

transition:.3s;
}

.btn-secondary:hover{

background:#1a1a1a;
}

.hero-image{

position:relative;

width:50%;

display:flex;
justify-content:center;
align-items:center;
}

.glow{

position:absolute;

width:700px;
height:700px;

border-radius:50%;

background:

radial-gradient(
circle,
rgba(125,186,56,.35),
transparent 70%
);

filter:blur(120px);

animation:
pulseGlow 5s infinite;
}

.crafter{

position:relative;

width:100%;

max-width:900px;

z-index:2;

filter:
drop-shadow(
0 40px 80px rgba(0,0,0,.7)
);

will-change:transform;
}

@keyframes pulseGlow{

0%{
transform:scale(1);
}

50%{
transform:scale(1.1);
}

100%{
transform:scale(1);
}

}

/* ==========================
   STATS
========================== */

.stats{

padding:100px 8%;

display:grid;

grid-template-columns:
repeat(4,1fr);

gap:25px;
}

.stat-card{

background:var(--card);

padding:40px;

border-radius:24px;

border:1px solid #222;

text-align:center;

transition:.35s;
}

.stat-card:hover{

transform:translateY(-10px);

border-color:var(--green);
}

.stat-card h2{

font-size:54px;

color:var(--green);

margin-bottom:10px;
}

.stat-card p{

color:var(--light);
}

/* ==========================
   LEISTUNGEN
========================== */

.services{

padding:120px 8%;
}

.section-title{

text-align:center;

margin-bottom:60px;
}

.section-title h2{

font-size:60px;

margin-bottom:15px;
}

.section-title p{

color:var(--light);

font-size:20px;
}

.service-grid{

display:grid;

grid-template-columns:
repeat(2,1fr);

gap:30px;
}

.service-card{

background:var(--card);

padding:40px;

border-radius:24px;

border:1px solid #222;

transition:.35s;
}

.service-card:hover{

transform:translateY(-12px);

border-color:var(--green);
}

.service-card .icon{

font-size:42px;

margin-bottom:20px;
}

.service-card h3{

font-size:28px;

margin-bottom:15px;
}

.service-card p{

color:var(--light);

line-height:1.8;
}

/* ==========================
   ANFRAGEFORMULAR
========================== */

.quote-section{

padding:120px 8%;
}

.quote-container{

max-width:900px;

margin:auto;

background:var(--card);

padding:50px;

border-radius:30px;

border:1px solid #222;
}

.quote-container h2{

font-size:56px;

text-align:center;

margin-bottom:15px;
}

.quote-container p{

text-align:center;

color:var(--light);

margin-bottom:40px;
}

.quote-container form{

display:flex;

flex-direction:column;

gap:20px;
}

.quote-container input,
.quote-container textarea,
.quote-container select{

width:100%;

padding:20px;

border-radius:16px;

border:1px solid #222;

background:#101010;

color:white;

font-size:16px;

font-family:'Montserrat',sans-serif;
}

.quote-container textarea{

height:180px;

resize:none;
}

.quote-container select{

cursor:pointer;
}

.quote-container button{

background:var(--green);

border:none;

padding:20px;

border-radius:16px;

font-size:18px;

font-weight:700;

color:white;

cursor:pointer;

transition:.3s;
}

.quote-container button:hover{

transform:translateY(-4px);
}

/* ==========================
   KONTAKTART
========================== */

.contact-methods{

display:flex;

gap:15px;
}

.contact-methods label{

flex:1;

background:#101010;

padding:18px;

border-radius:16px;

border:1px solid #222;

text-align:center;

cursor:pointer;

transition:.3s;
}

.contact-methods label:hover{

border-color:var(--green);
}

.contact-methods input{

margin-right:8px;
}

/* ==========================
   FOOTER
========================== */

footer{

padding:60px 8%;

border-top:1px solid #1b1b1b;

background:#050505;
}

.footer-content{

text-align:center;
}

.footer-logo{

height:70px;

margin-bottom:20px;
}

.footer-small{

margin-top:10px;

color:var(--light);
}

/* ==========================
   SCROLL ANIMATIONEN
========================== */

.hidden{

opacity:0;

transform:translateY(60px);

transition:.8s ease;
}

.show{

opacity:1;

transform:translateY(0);
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1200px){

.hero{

flex-direction:column;

text-align:center;
}

.hero-image{

width:100%;

margin-top:60px;
}

.hero h1{

font-size:60px;
}

.stats{

grid-template-columns:
repeat(2,1fr);
}

.service-grid{

grid-template-columns:1fr;
}

.contact-methods{

flex-direction:column;
}

}

@media(max-width:768px){

header{

padding:0 20px;
}

nav{

display:none;
}

.logo img{

height:80px;
}

.hero{

padding-top:160px;
}

.hero h1{

font-size:42px;
}

.hero p{

font-size:18px;
}

.hero-buttons{

flex-direction:column;
}

.stats{

grid-template-columns:1fr;
}

.quote-container{

padding:30px;
}

.quote-container h2{

font-size:38px;
}

.section-title h2{

font-size:42px;
}

}

.thank-you{

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

padding:40px;
}

.thank-you-box{

max-width:700px;

background:#151515;

padding:60px;

border-radius:30px;

border:1px solid #222;

text-align:center;
}

.thank-you-box h1{

font-size:56px;

margin-bottom:25px;

color:#7DBA38;
}

.thank-you-box p{

font-size:20px;

line-height:1.8;

margin-bottom:40px;

color:#bdbdbd;
}