/* ==========================================================
   Linkbalance – Main App Styles
   ========================================================== */

/* ================= Root Variables ================= */
:root{
  --bg-0:#0c0f14;
  --nav-bg: rgba(10, 12, 16, .75);
  --content-bg: rgba(255,255,255,.06);

  --text-0:#ffffff;
  --text-1:rgba(255,255,255,.65);  /* muted — clearly lighter than primary */
  --text-2:rgba(255,255,255,.40);  /* tertiary — placeholders, disabled */

  --gold:#d2a024;
  --gold-2:#f2c84c;

  --accent:#6fd06a;
  --accent-2:#4fbf55;

  --card-bg:#f6f7f8;
  --card-border: rgba(0,0,0,.08);

  --red: #b20000;

  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --shadow-soft: 0 16px 40px rgba(0,0,0,.18);

  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;

  /* ── Bootstrap dark-theme overrides ────────────────────────────────
     Bootstrap 5 reads these CSS vars for cards, tables, alerts, links
     etc. Without overrides the defaults (#212529 body color) make text
     invisible on our dark background.
  ──────────────────────────────────────────────────────────────────── */
  --bs-body-color:          #e8e8e8;
  --bs-body-color-rgb:      232, 232, 232;
  --bs-body-bg:             #0c0f14;
  --bs-body-bg-rgb:         12, 15, 20;
  --bs-secondary-color:     rgba(255,255,255,.65);
  --bs-secondary-color-rgb: 255, 255, 255;
  --bs-tertiary-color:      rgba(255,255,255,.40);
  --bs-tertiary-color-rgb:  255, 255, 255;
  --bs-emphasis-color:      #ffffff;
  --bs-emphasis-color-rgb:  255, 255, 255;

  --bs-border-color:             rgba(255,255,255,.15);
  --bs-border-color-translucent: rgba(255,255,255,.10);

  --bs-link-color:           #6ea8fe;
  --bs-link-color-rgb:       110, 168, 254;
  --bs-link-hover-color:     #9ec5fe;
  --bs-link-hover-color-rgb: 158, 197, 254;

  --bs-card-color:     #e8e8e8;
  --bs-card-bg:        rgba(255,255,255,.06);
  --bs-card-cap-color: #ffffff;
  --bs-card-cap-bg:    rgba(255,255,255,.10);
  --bs-card-border-color: rgba(255,255,255,.10);

  --bs-breadcrumb-divider-color: rgba(255,255,255,.40);
  --bs-breadcrumb-item-active-color: rgba(255,255,255,.65);

  /* ── Dropdown dark-theme ────────────────────────────────────────────── */
  --bs-dropdown-bg:               #1a1f2a;
  --bs-dropdown-color:            #e8e8e8;
  --bs-dropdown-border-color:     rgba(255,255,255,.12);
  --bs-dropdown-link-color:       #e8e8e8;
  --bs-dropdown-link-hover-color: #ffffff;
  --bs-dropdown-link-hover-bg:    rgba(255,255,255,.08);
  --bs-dropdown-link-active-color:#ffffff;
  --bs-dropdown-link-active-bg:   rgba(255,255,255,.12);
  --bs-dropdown-divider-bg:       rgba(255,255,255,.12);
  --bs-dropdown-header-color:     rgba(255,255,255,.50);
}

/* ================= Base ================= */

html, body {
  height: 100%;
  background: var(--bg-0);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text-0);
  -webkit-font-smoothing: antialiased;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1600px;
}

/* Scrollbar (modern browsers) */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.15);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,.25);
}

.content-bg {
  background: var(--content-bg);
}

.content-bg .card-header {
  background: rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: var(--text-1);
}

.table-content-dark {
  --bs-table-bg: var(--content-bg);
  --bs-table-color: var(--text-0);
  --bs-table-border-color: rgba(255,255,255,.12);
  --bs-table-striped-bg: rgba(255,255,255,.04);
  --bs-table-striped-color: var(--text-0);
  --bs-table-hover-bg: rgba(255,255,255,.06);
  --bs-table-hover-color: var(--text-0);
}

.table-content-dark > :not(caption) > * > * {
  background-color: var(--bs-table-bg);
  color: var(--bs-table-color);
}

.content-text {
  color: var(--text-0);
}

.text-muted {
  color: var(--bs-secondary-color) !important;
}

.default-bg {
  background: var(--bg-0);
}

.content-link {
  color: var(--gold);
}

/* ================= Navbar ================= */

.ll-navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 18px 0;
}

.ll-navbar--sticky {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 0;
  animation: llNavDown .22s ease forwards;
}

.ll-navbar--sticky .ll-navwrap {
  background: rgba(10, 12, 16, 0.92);
  border-radius: 14px;
}

@keyframes llNavDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

.ll-navwrap {
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 14px 18px;
}

.alert-success {
  background: rgba(111,208,106,.15);
  border: 1px solid rgba(111,208,106,.35);
  color: #d9fbd7;
}

.alert-danger {
  background: rgba(255,80,80,.12);
  border: 1px solid rgba(255,80,80,.35);
  color: #ffd6d6;
}

.alert-warning {
  background: rgba(255,193,7,.12);
  border: 1px solid rgba(255,193,7,.35);
  color: #ffe69c;
}

.alert-info {
  background: rgba(13,202,240,.10);
  border: 1px solid rgba(13,202,240,.30);
  color: #9eeaf9;
}

/* Pagination on dark background */
.page-link {
  background-color: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  color: #6ea8fe;
}
.page-link:hover {
  background-color: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.20);
  color: #9ec5fe;
}
.page-item.active .page-link {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}
.page-item.disabled .page-link {
  background-color: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  color: rgba(255,255,255,.30);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-0);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .06em;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.nav-link-ll {
  color: var(--text-1) !important;
  font-weight: 600;
  padding: 10px 14px !important;
  border-radius: 12px;
}

.nav-link-ll:hover {
  background: rgba(255,255,255,.06);
  color: var(--text-0) !important;
}

/* Buttons */

.btn-ll-signup {
  background: var(--accent);
  border: 0;
  color: #0b150d;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(79,191,85,.22);
}

.btn-ll-signup:hover {
  background: var(--accent-2);
}

.btn-ll-login {
  padding: 9px 16px;
  border-radius: 14px;
  font-size: .9rem;
}

.btn-ll-primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border: 0;
  color: #08110a;
  font-weight: 900;
  padding: 14px 22px;
  border-radius: 14px;
  letter-spacing: .02em;
  box-shadow: 0 12px 22px rgba(79,191,85,.24);
}

.btn-ll-primary:hover {
  filter: brightness(.98);
}

.btn-ll-ghost {
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--text-0);
  font-weight: 800;
  padding: 14px 22px;
  border-radius: 14px;
  letter-spacing: .02em;
}

.btn-ll-ghost:hover {
  background: rgba(255,255,255,.06);
}

/* ================= Navbar Toggler ================= */

.navbar-toggler {
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: none !important;
  width: 24px;
  height: 2px;
  background-color: white;
  display: block;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: white;
  left: 0;
}

.navbar-toggler-icon::before { top: -7px; }
.navbar-toggler-icon::after  { top:  7px; }

/* ================= Hero Section ================= */

.hero {
  position: relative;
  padding-top: 110px;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/bg_linklord_start.jpg');
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
  filter: saturate(1.05);
}

.hero-chain {
  position: absolute;
  left: 30%;
  top: 34%;
  width: 72%;
  height: 220px;
  opacity: .95;
  transform: rotate(-4deg);
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(0.2px);
}

.hero-sparkles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 25%, rgba(242,200,76,.18) 0 2px, transparent 3px),
    radial-gradient(circle at 22% 55%, rgba(242,200,76,.14) 0 2px, transparent 3px),
    radial-gradient(circle at 68% 35%, rgba(242,200,76,.16) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 62%, rgba(242,200,76,.12) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 22%, rgba(242,200,76,.10) 0 2px, transparent 3px);
  opacity: .7;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.1rem, 3.3vw, 3.3rem);
  line-height: 1.07;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-0);
  margin: 0 0 10px 0;
}

.hero-title .accent {
  color: var(--accent);
  font-weight: 900;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Glassmorphism-Panel hinter dem Hero-Text */
.hero-glass {
  background: rgba(8, 11, 16, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 38px 42px;
  /* Kein box-shadow — Hintergrundbild soll max. sichtbar bleiben */
}

@media (max-width: 991.98px) {
  .hero-glass {
    padding: 28px 28px;
    /* Auf kleinen Screens etwas transparenter, da kein Bild im Hintergrund */
    background: rgba(8, 11, 16, 0.60);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

@media (max-width: 575.98px) {
  .hero-glass {
    padding: 22px 20px;
    border-radius: 16px;
  }
}

.hero-figure {
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-figure img {
  max-height: 520px;
  width: auto;
  filter: drop-shadow(0 26px 60px rgba(0,0,0,.45));
}

/* ================= Wave Section ================= */

.wave-wrap {
  position: relative;
  z-index: 3;
  margin-top: -65px;
  background: transparent;
}

.wave-top {
  position: relative;
  height: 120px;
  overflow: hidden;
}

.wave-top::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: 20px;
  height: 160px;
  background: var(--wave-bg, var(--bg-0));
  border-top-left-radius: 60% 120px;
  border-top-right-radius: 60% 120px;
  transform: rotate(-1.2deg);
  box-shadow: 0 -12px 40px rgba(0,0,0,.25);
}

/* ================= Feature Cards ================= */

.features {
  position: relative;
  background: #efefef;
  padding: 30px 0 100px 0;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(0,0,0,.25);
}

.feature-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-weight: 800;
  color: #111827;
  font-size: 1.2rem;
}

.feature-desc {
  color: rgba(17,24,39,.70);
  margin: 0;
  font-weight: 500;
}

.feature-card-img-wrap {
  position: relative;
}

.feature-card .card-img-top {
  width: 100%;
  height: 175px;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-bottom: 16px;
  padding: 20px;
  /* background: rgba(0,0,0,.04); */
}

.feature-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  line-height: 1.4;
}

.feature-badge--beta {
  background: rgba(111,208,106,.18);
  color: var(--accent);
  border: 1px solid rgba(111,208,106,.35);
}

.feature-badge--soon {
  background: rgba(210,160,36,.15);
  color: var(--gold-2);
  border: 1px solid rgba(210,160,36,.30);
}

.feature-badge--new {
  background: rgba(178,0,0,.15);
  color: var(--red);
  border: 1px solid rgba(178,0,0,.30);
}

.feat-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
  flex-shrink: 0;
}

.feat-ico img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.mascot-corner {
  position: absolute;
  right: 36px;
  bottom: 20px;
  width: 210px;
  max-width: 28vw;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.25));
  opacity: .98;
  pointer-events: none;
}

/* ================= Forms Dark Mode ================= */

.form-control,
.form-select {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--text-0);
  color-scheme: dark;
}

/* Native select dropdown popup */
.form-select option,
select option {
  background: #1a1f2a;
  color: #e8e8e8;
}

.form-control::placeholder {
  color: rgba(255,255,255,.40);
  opacity: 1;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255,255,255,.12);
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(111,208,106,.2);
  color: var(--text-0);
}

.form-label {
  font-weight: 600;
  color: var(--text-0);
}

.form-check-label {
  color: var(--text-0);
}

.form-text {
  color: var(--text-1);
}
/* ================= Dashboard Blocks ================= */

.card-dark {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 20px;
}

/* ================= Utilities ================= */

.text-muted-light {
  color: var(--text-2) !important;
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.radius-xl { border-radius: var(--radius-xl); }
.radius-lg { border-radius: var(--radius-lg); }
.radius-md { border-radius: var(--radius-md); }

/* ================= Responsive ================= */

@media (max-width: 991.98px) {
  .ll-navbar { position: relative; padding: 14px 0; }
  .hero { padding-top: 22px; }
  .hero-figure { height: 150px; }
  .hero-figure img { max-height: 240px; }
  .hero-chain { left: 10%; top: 46%; width: 95%; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 2.05rem; }
  .wave-wrap { margin-top: -45px; }
  .hero-figure-col { z-index: 2; }
  .hero-figure { height: 40px; z-index: 2; }
  .hero-figure img { max-height: 180px; z-index: 2; }
  .mascot-corner { right: 14px; bottom: 10px; width: 160px; }
}

/* ================= Plans Section ================= */

.plans-section {
  background: var(--bg-0);
  padding: 72px 0 80px;
}

.plans-title {
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.plans-subtitle {
  color: var(--text-1);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0;
}

.plan-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-xl);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.plan-card--featured {
  background: color-mix(in srgb, var(--pc, var(--accent)) 10%, transparent);
  border-color: var(--pc, var(--accent));
  box-shadow: 0 0 0 1px var(--pc, var(--accent)), 0 16px 40px color-mix(in srgb, var(--pc, var(--accent)) 18%, transparent);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pc, var(--accent));
  color: #08110a;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-1);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.plan-card--featured .plan-name {
  color: var(--pc, var(--accent));
}

.plan-price {
  margin-bottom: 20px;
  line-height: 1;
}

.plan-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-0);
}

.plan-period {
  font-size: .85rem;
  color: var(--text-1);
  margin-left: 2px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-features li {
  font-size: .875rem;
  color: var(--text-1);
  display: flex;
  align-items: center;
  gap: 7px;
}

.plan-features li i {
  color: var(--pc, var(--accent));
  font-size: 1rem;
  flex-shrink: 0;
}

.plan-feat-off {
  opacity: .4;
}

.plan-feat-off i {
  color: var(--text-1) !important;
}

.plan-btn {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--text-0);
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 0;
  text-align: center;
  font-size: .9rem;
  transition: background .18s;
}

.plan-btn:hover {
  background: rgba(255,255,255,.14);
  color: var(--text-0);
}

.plan-btn--featured {
  background: var(--pc, var(--accent));
  border-color: var(--pc, var(--accent));
  color: #08110a;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--pc, var(--accent)) 28%, transparent);
}

.plan-btn--featured:hover {
  background: color-mix(in srgb, var(--pc, var(--accent)) 80%, #fff);
  border-color: color-mix(in srgb, var(--pc, var(--accent)) 80%, #fff);
  color: #08110a;
}

/* ================= Stats Section ================= */

.stats-section {
  background: linear-gradient(135deg, rgba(111,208,106,.08) 0%, rgba(242,200,76,.06) 100%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 56px 0;
}

.stats-row {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.stat-item--last {
  border-right: none;
}

@media (max-width: 767.98px) {
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item--last { border-bottom: none; }
}
/* auf md (768px+): 3 pro Reihe → rechte Border der 3. und 6. Spalte entfernen */
@media (min-width: 768px) and (max-width: 991.98px) {
  .col-md-2:nth-child(3n) .stat-item,
  .col-md-2:last-child .stat-item { border-right: none; }
  .col-md-2:nth-child(n+4) .stat-item { border-top: 1px solid rgba(255,255,255,.08); }
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: .9rem;
  color: var(--text-1);
  font-weight: 500;
}

/* ================= Testimonials Section ================= */

.testimonials-section {
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 72px 0 80px;
}

.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.30);
}

.testimonial-card--accent {
  background: rgba(111,208,106,.07);
  border-color: rgba(111,208,106,.22);
}

.testimonial-stars {
  color: var(--gold-2);
  font-size: 1rem;
  letter-spacing: .12em;
  margin-bottom: 14px;
  display: block;
}

.testimonial-text {
  color: var(--text-1);
  font-size: .95rem;
  line-height: 1.65;
  flex-grow: 1;
  margin: 0 0 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  color: #08110a;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar--img {
  background: none;
}

.testimonial-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-0);
}

.testimonial-role {
  font-size: .78rem;
  color: var(--text-1);
  margin-top: 2px;
}

/* ---- Testimonials Slider ---- */
.testi-slider {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.testi-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.testi-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 4px;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.22);
  padding: 0;
  cursor: pointer;
  transition: background .25s, transform .25s;
}

.testi-dot--active {
  background: var(--accent);
  transform: scale(1.25);
}

/* ====== Footer ====== */
.ll-footer {
  background: #070a0e;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 64px 0 0;
  color: var(--text-1);
}

.ll-footer-tagline {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 320px;
  margin: 0;
}

.ll-footer-social {
  display: flex;
  gap: 10px;
}

.ll-footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text-2);
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}

.ll-footer-social-link:hover {
  background: rgba(255,255,255,.07);
  color: var(--text-0);
  border-color: rgba(255,255,255,.22);
}

.ll-footer-heading {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 16px;
}

.ll-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ll-footer-links a {
  color: var(--text-1);
  text-decoration: none;
  font-size: .9rem;
  transition: color .18s;
}

.ll-footer-links a:hover {
  color: var(--accent);
}

.ll-footer-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 48px;
  padding: 20px 0;
  font-size: .8rem;
  color: var(--text-2);
}

.ll-footer-bottom-sep {
  opacity: .4;
}

/* ====== Home: Blog-Section ====== */
.ll-blog-section {
  padding: 72px 0 80px;
  background: var(--bg-0);
  border-top: 1px solid rgba(255,255,255,.07);
}

.ll-blog-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ll-blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111,208,106,.28);
  box-shadow: 0 18px 44px rgba(0,0,0,.30);
}

.ll-blog-card-img {
  height: 200px;
  overflow: hidden;
}

.ll-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ll-blog-card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
  font-size: 3rem;
  color: rgba(255,255,255,.18);
}

.ll-blog-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ll-blog-card-date {
  font-size: .75rem;
  color: var(--text-2);
  margin-bottom: 8px;
  letter-spacing: .04em;
}

.ll-blog-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-0);
  margin: 0 0 10px;
  line-height: 1.3;
}

.ll-blog-card-excerpt {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 16px;
  flex-grow: 1;
}

.ll-blog-card-link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
}

/* ====== Public Blog (views/blog/*) ====== */
.blog-card {
  transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,.25);
}

.blog-card-cover {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.blog-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-1);
  overflow-wrap: break-word;
  word-break: break-word;
  overflow-x: hidden;
}

.blog-content p {
  margin-bottom: 1rem;
}

.blog-content ul,
.blog-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.blog-content li {
  margin-bottom: .25rem;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.blog-content h1, .blog-content h2, .blog-content h3,
.blog-content h4, .blog-content h5, .blog-content h6 {
  color: var(--text-0);
  margin-top: 2rem;
  margin-bottom: .75rem;
}

.blog-content a {
  color: var(--accent);
}

.blog-content code {
  background: rgba(255,255,255,.08);
  padding: 2px 6px;
  border-radius: 5px;
  font-size: .9em;
}

.blog-content pre {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  padding: 16px;
  overflow-x: auto;
  white-space: pre-wrap;
}

.blog-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin-left: 0;
  color: var(--text-2);
}

.blog-comment {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.blog-comment:last-child {
  border-bottom: none;
}

.blog-comment-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  font-size: .7rem;
  font-weight: 800;
  color: #08110a;
  flex-shrink: 0;
}

.blog-comment-avatar--sm {
  width: 24px;
  height: 24px;
  font-size: .6rem;
  background: rgba(255,255,255,.12);
  color: var(--text-0);
}

.blog-comment-replies {
  margin-top: 10px;
  padding-left: 16px;
  border-left: 2px solid rgba(255,255,255,.08);
}

.blog-comment-reply {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.blog-comment-reply:last-child {
  border-bottom: none;
}

.blog-reply-form {
  margin-top: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.07);
}

.blog-editor {
  font-family: 'Courier New', Courier, monospace;
  font-size: .88rem;
  min-height: 420px;
}

/* ══ Light-section overrides (Hintergrund: Hell/#efefef) ════════ */
.ll-sec--light {
  --text-0: #1a1e2e;
  --text-1: #374060;
  --text-2: #6b7280;
  color: #1a1e2e;
  border-top-color: rgba(0,0,0,.10) !important;
}
.ll-sec--light .stat-item {
  border-color: rgba(0,0,0,.10);
}
@media (max-width: 767.98px) {
  .ll-sec--light .stat-item { border-bottom-color: rgba(0,0,0,.10); }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .ll-sec--light .col-md-2:nth-child(n+4) .stat-item { border-top-color: rgba(0,0,0,.10); }
}
.ll-sec--light .testimonial-card {
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.10);
}
.ll-sec--light .testimonial-card--accent {
  background: rgba(111,208,106,.15);
  border-color: rgba(111,208,106,.35);
}
.ll-sec--light .ll-blog-card {
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.10);
}

/* ── Blog-Einzelseite: Light-Hintergrund-Overrides ───────────── */
.blog--light .blog-content {
  color: #111;
}
.blog--light .blog-content h1,
.blog--light .blog-content h2,
.blog--light .blog-content h3,
.blog--light .blog-content h4,
.blog--light .blog-content h5,
.blog--light .blog-content h6 {
  color: #111;
}
.blog--light .blog-content a {
  color: #1a7a18;
}
.blog--light .blog-content blockquote {
  color: #444;
}
.blog--light .blog-content code {
  background: rgba(0,0,0,.07);
  color: #111;
}
.blog--light .blog-content pre {
  background: rgba(0,0,0,.04);
  border-color: rgba(0,0,0,.10);
  color: #111;
}
.blog--light .blog-comment {
  border-bottom-color: rgba(0,0,0,.09);
}
.blog--light .blog-comment-avatar--sm {
  background: rgba(0,0,0,.10);
  color: #111;
}
.blog--light .blog-comment-replies {
  border-left-color: rgba(0,0,0,.13);
}
.blog--light .blog-comment-reply {
  border-bottom-color: rgba(0,0,0,.06);
}
.blog--light .blog-reply-form {
  background: rgba(0,0,0,.03);
  border-color: rgba(0,0,0,.10);
}
.blog--light .reply-toggle {
  color: #444 !important;
}

.ll-wk-section {
  padding: 72px 0 80px;
  background: var(--bg-0);
  border-top: 1px solid rgba(255,255,255,.07);
}