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

:root {
  --dark: #0a0f1e;
  --dark2: #111827;
  --dark3: #1a2235;
  --accent: #00d084;
  --accent2: #00a866;
  --blue: #1d6fdb;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,15,30,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; color: var(--text); text-decoration: none; }
.logo-svg { width: 28px; height: 28px; color: var(--accent); flex-shrink: 0; }
.logo strong { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.btn-nav {
  background: var(--accent); color: #000 !important; font-weight: 600;
  padding: 8px 20px; border-radius: 8px; transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--accent2) !important; }
.burger { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* HERO */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,208,132,0.08) 0%, transparent 60%), var(--dark);
  padding: 80px 0;
}
.hero .container { display: flex; align-items: center; gap: 60px; }
.hero-content { flex: 1; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,208,132,0.1); border: 1px solid rgba(0,208,132,0.3);
  color: var(--accent); padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; margin-bottom: 24px;
}
.badge svg { flex-shrink: 0; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.accent { color: var(--accent); }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 480px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: var(--accent); color: #000; font-weight: 700; padding: 14px 28px;
  border-radius: 10px; text-decoration: none; font-size: 1rem; transition: all 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--text); border: 1px solid var(--border);
  padding: 14px 28px; border-radius: 10px; text-decoration: none; font-size: 1rem; transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats { display: flex; gap: 36px; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.stat span { font-size: 0.8rem; color: var(--text-muted); }

/* DASHBOARD VISUAL */
.hero-visual { flex: 0 0 340px; }
.dash-card {
  background: var(--dark3); border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 0 60px rgba(0,208,132,0.08), 0 8px 32px rgba(0,0,0,0.3);
}

/* Header */
.dash-header { display: flex; align-items: center; gap: 10px; }
.dash-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dash-dot.green { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.dash-dot.yellow { background: #f59e0b; box-shadow: 0 0 6px #f59e0b; }
.dash-dot.small { width: 6px; height: 6px; }
.dash-title { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.dash-badge {
  margin-left: auto; font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  color: var(--accent); background: rgba(0,208,132,0.12); padding: 2px 8px;
  border-radius: 4px; letter-spacing: 0.5px;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }

/* Metrics row */
.dash-row { display: flex; gap: 16px; }
.dash-metric {
  flex: 1; background: var(--dark2); border-radius: 10px; padding: 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.dash-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.dash-value { font-size: 1.4rem; font-weight: 800; color: var(--text); }
.green-text { color: var(--accent); }

/* Server list */
.dash-servers { display: flex; flex-direction: column; gap: 12px; }
.dash-srv { display: flex; flex-direction: column; gap: 6px; }
.dash-srv-row { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); }
.dash-tag {
  margin-left: auto; font-size: 0.65rem; font-weight: 600; padding: 1px 7px;
  border-radius: 4px;
}
.dash-tag.ok { color: var(--accent); background: rgba(0,208,132,0.1); }
.dash-tag.warn { color: #f59e0b; background: rgba(245,158,11,0.1); }

/* Progress bars */
.dash-bar-bg { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.dash-bar-fill { height: 100%; border-radius: 2px; background: var(--accent); transition: width 1s ease; }
.dash-bar-fill.busy { background: #f59e0b; }
.dash-bar-fill.low { background: var(--accent); opacity: 0.7; }
.dash-bar-label { font-size: 0.65rem; color: var(--text-muted); }

/* Footer */
.dash-footer {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.7rem; color: var(--text-muted);
  padding-top: 10px; border-top: 1px solid var(--border);
}
.dash-footer svg { color: var(--accent); flex-shrink: 0; }

/* SECTIONS */
section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }
.section-header.light h2 { color: var(--text); }
.section-header.light p { color: rgba(255,255,255,0.7); }

/* CARDS */
.leistungen { background: var(--dark2); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.card {
  background: var(--dark3); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(0,208,132,0.4); transform: translateY(-4px); cursor: pointer; }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a:hover { color: var(--accent); }
.card h3 a::after { content: ''; position: absolute; inset: 0; }
.card { position: relative; }
.card-icon { width: 40px; height: 40px; margin-bottom: 16px; color: var(--accent); }
.card-icon svg { width: 100%; height: 100%; }
.card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* PRICING */
.pakete { background: var(--dark3); }
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: start; }
.plan {
  background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 32px; position: relative;
}
.plan.featured { border-color: var(--accent); box-shadow: 0 0 40px rgba(0,208,132,0.15); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #000; font-size: 0.75rem; font-weight: 700;
  padding: 4px 16px; border-radius: 20px;
}
.plan-name { font-size: 1rem; color: var(--text-muted); margin-bottom: 8px; }
.plan-price { font-size: 2.2rem; font-weight: 800; margin-bottom: 28px; color: var(--text); }
.plan-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.plan-features li { font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.plan-features li svg { flex-shrink: 0; }
.plan-features li.on svg { color: var(--accent); }
.plan-features li.off { opacity: 0.35; }
.plan-features li.off svg { color: #ef4444; }
.btn-plan {
  display: block; text-align: center; padding: 12px; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  border: 1px solid var(--border); color: var(--text); transition: all 0.2s;
}
.btn-plan:hover { border-color: var(--accent); color: var(--accent); }
.btn-plan.featured { background: var(--accent); color: #000; border-color: var(--accent); }
.btn-plan.featured:hover { background: var(--accent2); }

/* WARUM */
.warum { background: var(--dark2); }
.reasons { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.reason { text-align: center; }
.reason-icon { width: 48px; height: 48px; margin: 0 auto 16px; color: var(--accent); }
.reason-icon svg { width: 100%; height: 100%; }
.reason h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.reason p { color: var(--text-muted); font-size: 0.9rem; }

/* KONTAKT */
.kontakt { background: var(--dark3); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.kontakt-info { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; }
.kontakt-item { display: flex; align-items: flex-start; gap: 16px; }
.kontakt-icon { width: 28px; height: 28px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.kontakt-icon svg { width: 100%; height: 100%; }
.kontakt-item strong { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; }
.kontakt-item a, .kontakt-item span { color: var(--text); text-decoration: none; font-size: 1rem; }
.kontakt-item a:hover { color: var(--accent); }
.kontakt-form { display: flex; flex-direction: column; gap: 14px; }
.kontakt-form input, .kontakt-form textarea {
  background: var(--dark2); border: 1px solid var(--border); border-radius: 8px;
  padding: 14px 16px; color: var(--text); font-size: 0.95rem; font-family: inherit;
  transition: border-color 0.2s;
}
.kontakt-form input:focus, .kontakt-form textarea:focus { outline: none; border-color: var(--accent); }
.kontakt-form textarea { resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; cursor: pointer; }
.checkbox-label input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--accent); width: 16px; height: 16px; cursor: pointer; }
.checkbox-label a { color: var(--accent); text-decoration: underline; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-feedback { text-align: center; padding: 8px 0; font-size: 0.9rem; border-radius: 8px; }
.form-feedback.success { color: var(--accent); background: rgba(0,208,132,0.1); padding: 12px; }
.form-feedback.error { color: #ef4444; background: rgba(239,68,68,0.1); padding: 12px; }

/* FOOTER */
footer {
  background: var(--dark); border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer-copy { color: var(--text-muted); font-size: 0.85rem; }
.footer-copy a { color: var(--accent); text-decoration: none; }
.footer-legal a { color: var(--text-muted); text-decoration: none; font-size: 0.8rem; margin: 0 8px; }
.footer-legal a:hover { color: var(--text); }

/* SECTION TAG */
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--accent); margin-bottom: 12px;
}

/* TRUST BAR */
.trust-bar { background: var(--dark3); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-items { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); }
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* STEPS / ABLAUF */
.ablauf { background: var(--dark); }
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.step {
  text-align: center; max-width: 280px; padding: 0 24px;
}
.step-num {
  font-size: 2.5rem; font-weight: 800; color: var(--accent); opacity: 0.3;
  margin-bottom: 12px; line-height: 1;
}
.step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 0.9rem; }
.step-line {
  flex-shrink: 0; width: 60px; height: 2px; background: var(--border);
  margin-top: 30px;
}

/* PLAN DESC */
.plan-desc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 16px; }

/* TECH GRID */
.tech { background: var(--dark3); }
.tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.tech-item {
  background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column; gap: 4px;
  transition: border-color 0.2s, transform 0.2s;
}
.tech-item:hover { border-color: rgba(0,208,132,0.4); transform: translateY(-2px); }
.tech-name { font-size: 1rem; font-weight: 600; color: var(--text); }
.tech-desc { font-size: 0.8rem; color: var(--text-muted); }

/* FAQ */
.faq { background: var(--dark3); }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(0,208,132,0.3); }
.faq-item summary {
  padding: 18px 24px; cursor: pointer; font-weight: 600; font-size: 0.95rem;
  color: var(--text); list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--accent); font-weight: 300; transition: transform 0.2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 24px 18px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* BETTER FOOTER */
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 32px; margin-bottom: 24px; border-bottom: 1px solid var(--border); }
.footer-brand .logo { margin-bottom: 12px; }
.footer-desc { color: var(--text-muted); font-size: 0.85rem; max-width: 300px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links h4 { font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }

/* SCROLL ANIMATIONS */
.animate { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark2); padding: 20px; gap: 16px; border-bottom: 1px solid var(--border); z-index: 99; }
  .nav-links.open { display: flex; }
  .burger { display: block; }
  .hero .container { flex-direction: column; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .trust-items { gap: 20px; }
  .steps { flex-direction: column; align-items: center; }
  .step-line { width: 2px; height: 40px; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== SUBPAGE STYLES ===== */

/* NAV DROPDOWN */
.nav-links .dropdown { position: relative; }
.nav-links .dropdown > ul,
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%); background: var(--dark2);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 8px; min-width: 220px; list-style: none !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4); z-index: 200;
  margin: 0;
}
/* Invisible bridge to close the hover gap */
.dropdown-menu::before {
  content: ''; position: absolute; top: -20px; left: 0; right: 0; height: 20px;
}
.dropdown:hover > .dropdown-menu { display: block; }
.dropdown-menu li { list-style: none; }
.dropdown-menu li a {
  display: block; padding: 10px 16px; border-radius: 8px;
  font-size: 0.875rem !important; color: var(--text-muted) !important;
  transition: all 0.15s;
}
.dropdown-menu li a:hover { background: rgba(0,208,132,0.08); color: var(--text) !important; }
.dropdown-menu li a.active { color: var(--accent) !important; }
.nav-links a.active { color: var(--accent); }

/* BREADCRUMB */
.breadcrumb-bar {
  display: none;
}
.breadcrumb,
ol.breadcrumb {
  display: flex; list-style: none !important; gap: 0; align-items: center;
  font-size: 0.75rem; margin: 0 0 12px 0; padding: 0; letter-spacing: 0.02em;
}
nav[aria-label="Breadcrumb"] {
  background: none; border: none; padding: 0; margin: 0;
}
.breadcrumb li { list-style: none; }
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li + li::before { content: '›'; margin: 0 6px; color: var(--text-muted); opacity: 0.5; }
.breadcrumb li a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; opacity: 0.7; }
.breadcrumb li a:hover { color: var(--accent); opacity: 1; }
.breadcrumb li[aria-current="page"] { color: var(--text-muted); opacity: 0.7; }

/* PAGE HERO (subpages) */
.page-hero {
  padding: 72px 0 56px;
  background: radial-gradient(ellipse at 60% 40%, rgba(0,208,132,0.07) 0%, transparent 65%), var(--dark);
}
.page-hero-content { max-width: 720px; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
.page-hero .hero-sub { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 0; max-width: 620px; }

/* LEGAL PAGES */
.legal-page { padding: 64px 0 80px; }
.legal-content { max-width: 780px; }
.legal-content h1 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 36px; }
.legal-intro { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 40px; padding: 12px 16px; background: rgba(255,255,255,0.03); border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0; }
.legal-section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.legal-section h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; color: var(--text-muted); margin-top: 16px; }
.legal-section p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 12px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { list-style: disc; padding-left: 24px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.legal-section a { color: var(--accent); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }

/* SERVICE DETAIL PAGES */
.service-detail { padding: 64px 0 80px; }
.service-grid { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.service-main h2 { font-size: 1.35rem; font-weight: 700; margin-top: 36px; margin-bottom: 14px; color: var(--text); }
.service-main h2:first-child { margin-top: 0; }
.service-main p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 14px; }
.service-main ul.sla-list { list-style: none; padding: 0; margin-bottom: 14px; }
.service-main ul.sla-list li { color: var(--text-muted); font-size: 0.9rem; padding: 8px 0 8px 16px; border-left: 2px solid var(--border); margin-bottom: 6px; }
.service-main ul.sla-list li strong { color: var(--text); }

.feature-list { margin-top: 32px; padding: 28px; background: var(--dark3); border: 1px solid var(--border); border-radius: var(--radius); }
.feature-list h3 { font-size: 1rem; font-weight: 700; margin-bottom: 18px; }
.feature-list ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-muted); }
.feature-list li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* SIDEBAR */
.service-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--dark3); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.sidebar-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tag {
  background: rgba(0,208,132,0.08); border: 1px solid rgba(0,208,132,0.2);
  color: var(--accent); font-size: 0.75rem; font-weight: 500;
  padding: 4px 10px; border-radius: 6px;
}
.sidebar-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.sidebar-links li a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; display: block; padding: 4px 0; }
.sidebar-links li a:hover { color: var(--accent); }
.sidebar-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-big { font-size: 2rem; font-weight: 800; color: var(--accent); }
.price-per { color: var(--text-muted); font-size: 0.85rem; }

/* KURSE OVERVIEW */
.kurse-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px;
}
.kurs-card {
  background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: border-color 0.2s, transform 0.2s; position: relative;
}
.kurs-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.kurs-card-icon { width: 48px; height: 48px; margin-bottom: 16px; color: var(--accent); }
.kurs-card-icon svg { width: 48px; height: 48px; }
.kurs-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.kurs-card h3 a { color: var(--text); text-decoration: none; }
.kurs-card h3 a::after { content: ''; position: absolute; inset: 0; }
.kurs-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 16px; }
.kurs-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); }
.kurs-meta svg { width: 16px; height: 16px; margin-right: 4px; flex-shrink: 0; }
.kurs-meta span { display: flex; align-items: center; }
.kurs-price { color: var(--accent); font-weight: 700; }
.coming-soon { opacity: 0.6; }
.coming-soon:hover { border-color: var(--border); transform: none; }
.coming-soon-badge { position: absolute; top: 16px; right: 16px; background: var(--dark3); color: var(--text-muted); font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 99px; text-transform: uppercase; letter-spacing: 0.05em; }

/* KURS DETAIL */
.kurs-detail { padding: 60px 0 80px; }
.kurs-detail .kurs-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.kurs-main h2 { font-size: 1.3rem; font-weight: 700; margin: 32px 0 12px; }
.kurs-main h2:first-child { margin-top: 0; }
.kurs-main p { color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.agenda-list { list-style: none !important; padding: 0; margin: 0 0 24px; }
.agenda-list li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); list-style: none; }
.agenda-list li:last-child { border-bottom: none; }
.agenda-list li svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.agenda-list li div { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }
.agenda-list li strong { color: var(--text); }
.pricing-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.pricing-table th { text-align: left; padding: 10px 14px; font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 2px solid var(--border); }
.pricing-table td { padding: 14px; border-bottom: 1px solid var(--border); font-size: 0.92rem; color: var(--text-muted); }
.pricing-table td strong { color: var(--text); }
.pricing-table .price { color: var(--accent); font-weight: 700; font-size: 1.05rem; }
.kurs-sidebar { position: sticky; top: 100px; align-self: start; }
.info-row { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-muted); margin-bottom: 10px; }
.info-row svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); }
.sidebar-links { list-style: none !important; padding: 0; margin: 0; }
.sidebar-links li { padding: 6px 0; list-style: none; }
.sidebar-links li a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.sidebar-links li a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .kurs-detail .kurs-grid { grid-template-columns: 1fr; gap: 32px; }
  .kurs-sidebar { position: static; }
  .kurse-grid { grid-template-columns: 1fr; }
}

/* CTA SECTION */
.cta-section { background: var(--dark3); padding: 80px 0; }
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 14px; }
.cta-inner p { color: var(--text-muted); font-size: 1rem; margin-bottom: 28px; }

/* ABOUT PAGE */
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 18px; }
.about-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 14px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.value-card { background: var(--dark3); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.value-card:hover { border-color: rgba(0,208,132,0.3); }
.value-icon { width: 32px; height: 32px; color: var(--accent); margin-bottom: 12px; }
.value-icon svg { width: 100%; height: 100%; }
.value-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

.approach-section { background: var(--dark2); padding: 80px 0; }
.approach-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.approach-item { padding: 28px; background: var(--dark3); border: 1px solid var(--border); border-radius: var(--radius); }
.approach-num { font-size: 2rem; font-weight: 800; color: var(--accent); opacity: 0.3; margin-bottom: 10px; }
.approach-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.approach-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

.region-section { background: var(--dark3); padding: 80px 0; }
.region-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.region-item {
  display: flex; align-items: center; gap: 8px; padding: 14px 18px;
  background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 0.9rem; color: var(--text-muted);
}
.region-item svg { color: var(--accent); flex-shrink: 0; }

/* RESPONSIVE SUBPAGES */
@media (max-width: 900px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .approach-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .about-values { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0 40px; }

  /* Dropdown on mobile: inline list, toggled via JS */
  .nav-links .dropdown > .dropdown-menu {
    display: none;
    position: static; transform: none;
    background: transparent; border: none; box-shadow: none;
    padding: 0 0 0 16px; min-width: auto;
  }
  .dropdown:hover > .dropdown-menu {
    display: none; /* disable hover on mobile, use JS toggle */
  }
  .dropdown-menu li a {
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
  }

  /* Breadcrumb below nav, no overlap */
  .breadcrumb-bar {
    position: relative; z-index: 90;
  }
}
