:root {
  --primary:  #0d1f3c;
  --accent:   #00d4aa;
  --light:    #f5f7fa;
  --white:    #ffffff;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.fw-800 { font-weight: 800 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-600 { font-weight: 600 !important; }
.ls-wide { letter-spacing: 0.12em; }

/* ── COLORS ──────────────────────────────────────────────── */
.bg-primary-brand { background-color: var(--primary) !important; }
.text-accent       { color: var(--accent) !important; }
.btn-accent {
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 700;
  border: none;
}
.btn-accent:hover {
  background-color: #00bfa0;
  color: var(--primary);
}

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar-brand { font-size: 1.4rem; }
.navbar { min-height: 64px; position: relative; }
.nav-link { font-weight: 500; font-size: 0.9rem; }

/* Mobile: aufgeklapptes Menü */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 8px;
    border-radius: 0 0 12px 12px;
    padding: 8px 0 12px;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  }
  .navbar-nav {
    gap: 0 !important;
  }
  .navbar-nav .nav-link {
    font-size: 1rem;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.9) !important;
  }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    background: rgba(255,255,255,0.08);
    color: var(--accent) !important;
  }
  .navbar-nav .btn-accent {
    display: block;
    margin: 12px 16px 0;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
  }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, #162d56 100%);
  min-height: calc(100vh - 64px);
  color: white;
  padding: 80px 0;
}

.badge-pill {
  display: inline-block;
  background: rgba(0,212,170,0.15);
  color: var(--accent);
  border: 1px solid rgba(0,212,170,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.stat-block { text-align: center; }
.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.device-mockup {
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SECTIONS ─────────────────────────────────────────────── */
.section-pad { padding: 80px 0; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #666;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── FEATURE CARDS ───────────────────────────────────────── */
.feature-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(13,31,60,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(13,31,60,0.12);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

/* ── VORTEILE ────────────────────────────────────────────── */
.vorteil-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #eef1f7;
  font-size: 0.95rem;
  color: #444;
}
.vorteil-check {
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── BRANCHEN ────────────────────────────────────────────── */
.branche-btn {
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  transition: all 0.15s;
}

/* ── STEPS ───────────────────────────────────────────────── */
.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,212,170,0.15);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* ── PRICING ─────────────────────────────────────────────── */
.price-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(13,31,60,0.07);
  position: relative;
  height: 100%;
}
.price-card-featured {
  background: var(--primary);
  color: white;
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(13,31,60,0.25);
}
.price-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: inherit;
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount span { font-size: 1rem; font-weight: 500; }
.price-sub { font-size: 0.78rem; color: #888; margin-bottom: 20px; }
.price-card-featured .price-sub { color: rgba(255,255,255,0.55); }
.price-list { list-style: none; padding: 0; margin: 0; }
.price-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.88rem;
}
.price-card-featured .price-list li { border-color: rgba(255,255,255,0.1); }
.price-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── BRAND LOGOS ─────────────────────────────────────────── */
.brand-logo-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── HTMX indicator ─────────────────────────────────────── */
.htmx-indicator { display: none; }
.htmx-request .htmx-indicator { display: inline-block; }

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
