/* --- FARBPALETTE (Dannyu Style) --- */
:root {
  --bg: #0a0a0a;          /* Fast Schwarz */
  --panel: #141414;       /* Dunkles Grau für Karten */
  --border: #2a2a2a;      /* Subtile Ränder */
  
  --text: #f0f0f0;        /* Fast Weiß */
  --muted: #888888;       /* Mittelgrau für Nebentext */
  
  --brand: #66da43;       /* DEIN GRÜN */
  --brand-glow: rgba(102, 218, 67, 0.15); /* Leuchten */
  
  --radius: 8px;          /* Etwas eckiger/technischer */
  --max: 1080px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* TYPOGRAPHY */
h1, h2, h3 { font-weight: 800; letter-spacing: -0.5px; margin-top: 0; }
code, .mono { font-family: 'JetBrains Mono', monospace; }

a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brand); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px 80px; }

/* NAV */
header { 
  position: sticky; top: 0; 
  background: rgba(10,10,10,0.9); 
  backdrop-filter: blur(10px); 
  border-bottom: 1px solid var(--border); 
  z-index: 50; 
}
.nav { 
  max-width: var(--max); margin: 0 auto; padding: 15px 20px; 
  display: flex; align-items: center; justify-content: space-between; 
}
.logo { 
  font-weight: 700; letter-spacing: -0.5px; font-size: 18px; 
  display: flex; align-items: center; gap: 10px; color: var(--text);
}
.dot { 
  width: 8px; height: 8px; border-radius: 50%; 
  background: var(--brand); 
  box-shadow: 0 0 8px var(--brand); 
}

/* HERO */
.hero { 
  padding: 80px 0 60px; 
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; 
}
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; gap: 40px; padding: 50px 0; } }

h1 { 
  margin: 0 0 20px; 
  font-size: clamp(36px, 5vw, 52px); 
  line-height: 1.1; letter-spacing: -1.5px;
  color: #fff;
}
h1 span { color: var(--brand); }

.sub { font-size: 18px; color: var(--muted); margin-bottom: 30px; max-width: 550px; }

/* BUTTONS */
.btn { 
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 6px; 
  font-weight: 600; font-size: 15px; cursor: pointer;
  transition: all 0.2s; border: 1px solid transparent; 
}
.btn.primary { 
  background: var(--brand); 
  color: #000; 
  border-color: var(--brand); 
}
.btn.primary:hover { 
  background: #55c235; border-color: #55c235; 
  box-shadow: 0 0 20px var(--brand-glow);
  transform: translateY(-1px);
}
.btn.secondary { 
  background: transparent; 
  color: var(--text); 
  border-color: var(--border); 
}
.btn.secondary:hover { 
  border-color: var(--text); 
  background: rgba(255,255,255,0.05);
}

/* BADGES */
.stack-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 25px; }
.tech-badge { 
  font-size: 13px; font-family: 'JetBrains Mono', monospace;
  padding: 5px 10px; border-radius: 4px; 
  background: rgba(255,255,255,0.05); 
  color: var(--muted); 
  border: 1px solid var(--border); 
}
.tech-badge.highlight {
  color: var(--brand);
  border-color: rgba(102, 218, 67, 0.3);
  background: rgba(102, 218, 67, 0.05);
}

/* CARDS & GRID */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }

.card { 
  background: var(--panel); 
  border: 1px solid var(--border); 
  border-radius: var(--radius); 
  padding: 25px; 
  transition: transform 0.2s, border-color 0.2s; 
}
.card:hover { border-color: #444; transform: translateY(-2px); }

.card h3 { margin: 0 0 10px; font-size: 18px; color: #fff; }
.card p { margin: 0 0 15px; color: var(--muted); font-size: 15px; line-height: 1.5; }
.card ul { padding-left: 18px; color: var(--muted); margin: 0; font-size: 14px; }
.card li { margin-bottom: 6px; }
.card li b { color: var(--text); }

/* SECTIONS */
.section-title { 
  margin: 100px 0 30px; 
  display: flex; align-items: flex-end; justify-content: space-between; 
  border-bottom: 1px solid var(--border); padding-bottom: 15px;
}
.section-title h2 { margin: 0; font-size: 24px; color: #fff; }
.section-title span { color: var(--brand); font-family: 'JetBrains Mono', monospace; font-size: 14px; }

/* ABOUT SECTION */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; gap: 30px; } }

.profile-card { 
  display: flex; gap: 20px; align-items: center; 
  background: rgba(255,255,255,0.03); padding: 20px; border-radius: 8px; border: 1px solid var(--border);
  margin-bottom: 20px;
}
.profile-pic { 
  width: 50px; height: 50px; border-radius: 50%; background: #222; 
  flex-shrink: 0; border: 2px solid var(--brand); 
  display: flex; align-items: center; justify-content: center; 
  object-fit: cover;
}
.video-container {
  background: #000; border: 1px solid var(--border); border-radius: 8px;
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.video-placeholder { color: var(--muted); font-size: 14px; text-align: center; }

/* PRICING */
.price-card { display: flex; flex-direction: column; height: 100%; position: relative; }
.price-card.featured { border-color: var(--brand); box-shadow: 0 0 30px rgba(102,218,67,0.05); }
.price-sub { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--brand); font-weight: 700; margin-bottom: 5px;}
.price-tag { font-size: 36px; font-weight: 800; color: #fff; margin: 10px 0; letter-spacing: -1px; }

/* FOOTER */
footer { 
  margin-top: 100px; padding: 40px 0; 
  border-top: 1px solid var(--border); 
  text-align: center; color: #555; font-size: 14px; 
}
footer a { text-decoration: underline; color: #777; }
footer a:hover { color: var(--text); }

/* UTILS */
.green-check { color: var(--brand); margin-right: 8px; font-weight: bold; }
.red-cross { color: #ff4444; margin-right: 8px; font-weight: bold; }

/* LANGUAGE SWITCHER */
.lang-switch {
  display: flex; gap: 8px; margin-left: 20px; font-size: 13px; font-weight: 600;
  border-left: 1px solid var(--border); padding-left: 20px;
}
.lang-switch a { color: var(--muted); text-decoration: none; }
.lang-switch a:hover, .lang-switch a.active { color: var(--brand); }

/* MOBIL ANPASSUNG */
@media (max-width: 600px) {
  .nav { flex-wrap: wrap; gap: 10px; }
  .lang-switch { margin-left: auto; border: none; padding-left: 0; }
}