/* ═══════════════════════════════════════════════════════════════════════════
   MiniHeld App — Download & Marketing Page
   Komplett eigenständige CSS-Datei, kein Recycling von app.css
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Seiten-Overrides ─────────────────────────────────────────────────────── */

html:has(body.page-download) {
  width: 100%;
  overflow-x: clip;
}

body.page-download {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background: #060d18 !important;
}

body.page-download .topbar {
  background: rgba(6, 13, 24, 0.92) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  position: sticky;
  top: 0;
  z-index: 200;
}

body.page-download .brand,
body.page-download .brand strong,
body.page-download .brand small,
body.page-download .brand-mark {
  color: #fff !important;
}

body.page-download .nav-link {
  color: rgba(255, 255, 255, 0.65) !important;
}

body.page-download .nav-link:hover,
body.page-download .nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

body.page-download .nav-dropdown-menu {
  background: #0f1e33 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body.page-download .nav-dropdown-item {
  color: rgba(255, 255, 255, 0.65) !important;
}

body.page-download .nav-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  color: #fff !important;
}

body.page-download .content {
  display: block !important;
  gap: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

body.page-download .app-shell {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.page-download .topbar {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0 !important;
  transform: none !important;
  border-radius: 0 !important;
  top: 0 !important;
  box-sizing: border-box;
}

body.page-download .dl-hero,
body.page-download .dl-trust,
body.page-download .dl-features,
body.page-download .dl-download-section,
body.page-download .dl-install-section,
body.page-download .dl-how-section,
body.page-download .dl-faq-section,
body.page-download .dl-older-section {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* ── Keyframe Animationen ─────────────────────────────────────────────────── */

@keyframes dl-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30%       { transform: translate(50px, -40px) scale(1.08); }
  65%       { transform: translate(-35px, 30px) scale(0.93); }
}

@keyframes dl-blob-alt {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-60px, 50px) scale(1.06); }
  70%       { transform: translate(40px, -30px) scale(0.96); }
}

@keyframes dl-float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-20px) rotate(1deg); }
}

@keyframes dl-glow-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(16, 185, 129, 0.45), 0 4px 16px rgba(16, 185, 129, 0.3); }
  50%       { box-shadow: 0 0 50px rgba(16, 185, 129, 0.75), 0 8px 32px rgba(16, 185, 129, 0.4); }
}

@keyframes dl-shimmer {
  0%   { background-position: -400% center; }
  100% { background-position: 400% center; }
}

@keyframes dl-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes dl-badge-pop {
  0%   { transform: scale(0.7); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */

.dl-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  min-height: 540px;
  display: flex;
  align-items: center;
}

/* Animierte Hintergrund-Blobs */
.dl-hero .dl-blob-1 {
  position: absolute;
  top: -160px; left: -120px;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 65%);
  animation: dl-blob 9s ease-in-out infinite;
  pointer-events: none;
}

.dl-hero .dl-blob-2 {
  position: absolute;
  bottom: -180px; right: -100px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 65%);
  animation: dl-blob-alt 12s ease-in-out infinite;
  pointer-events: none;
}

.dl-hero .dl-blob-3 {
  position: absolute;
  top: 40%; left: 45%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 65%);
  animation: dl-blob 15s ease-in-out infinite reverse;
  pointer-events: none;
}

.dl-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 38vw);
  gap: clamp(32px, 5vw, 96px);
  align-items: center;
}

/* Text */

.dl-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #7dd3fc;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  animation: dl-badge-pop 0.6s ease both;
}

.dl-hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 22px;
  animation: dl-fade-up 0.7s ease 0.1s both;
}

.dl-hero-title .dl-gradient-text {
  background: linear-gradient(90deg, #60a5fa, #a78bfa, #34d399);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: dl-shimmer 4s linear infinite;
}

.dl-hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
  margin: 0 0 40px;
  max-width: 480px;
  animation: dl-fade-up 0.7s ease 0.2s both;
}

.dl-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  animation: dl-fade-up 0.7s ease 0.3s both;
}

.dl-hero-dl-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  background: #10b981;
  color: #fff;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 16px;
  font-family: inherit;
  animation: dl-glow-pulse 2.5s ease-in-out infinite;
  transition: transform 0.15s, filter 0.15s;
}

.dl-hero-dl-btn:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.1);
  text-decoration: none;
  color: #fff;
  animation: none;
  box-shadow: 0 0 60px rgba(16, 185, 129, 0.6), 0 10px 30px rgba(16, 185, 129, 0.35);
}

.dl-hero-dl-btn strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.dl-hero-dl-btn small {
  font-size: 0.74rem;
  font-weight: 700;
  opacity: 0.75;
}

.dl-hero-unavail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.92rem;
  font-weight: 700;
}

.dl-hero-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ── Telefon-Mockup ───────────────────────────────────────────────────────── */

.dl-phone-wrap {
  display: flex;
  justify-content: center;
  animation: dl-float 5s ease-in-out infinite;
}

.dl-phone {
  width: 220px;
  background: linear-gradient(160deg, #1e3a5f 0%, #0f2540 100%);
  border-radius: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.dl-phone-notch {
  width: 80px;
  height: 10px;
  background: #0a1628;
  border-radius: 999px;
  margin: 14px auto 0;
}

.dl-phone-screen {
  padding: 10px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Topbar im Mockup */
.dl-ps-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.dl-ps-logo {
  font-size: 0.66rem;
  font-weight: 900;
  color: #7dd3fc;
  letter-spacing: 0.04em;
}

.dl-ps-avatar {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
}

/* Hero-Karte im Mockup */
.dl-ps-hero {
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  border-radius: 14px;
  padding: 12px;
}

.dl-ps-hero p {
  margin: 0 0 8px;
  font-size: 0.64rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.75);
}

.dl-ps-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.dl-ps-stat {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  padding: 5px 4px;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 900;
  color: #fff;
}

/* Mission-Cards im Mockup */
.dl-ps-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 11px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dl-ps-card-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.dl-ps-card-icon.c-green  { background: #d1fae5; }
.dl-ps-card-icon.c-blue   { background: #dbeafe; }
.dl-ps-card-icon.c-purple { background: #ede9fe; }

.dl-ps-card-text strong {
  display: block;
  font-size: 0.61rem;
  font-weight: 900;
  color: #0f2540;
  line-height: 1.3;
}

.dl-ps-card-text small {
  font-size: 0.54rem;
  font-weight: 700;
  color: #64748b;
}

/* Navigation im Mockup */
.dl-ps-nav {
  display: flex;
  justify-content: space-around;
  padding: 10px 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 0 -12px;
}

.dl-ps-nav span {
  font-size: 1rem;
  opacity: 0.4;
  cursor: default;
}

.dl-ps-nav span.on { opacity: 1; filter: drop-shadow(0 0 5px rgba(96, 165, 250, 0.8)); }

/* ── Trust-Strip ──────────────────────────────────────────────────────────── */

.dl-trust {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
}

.dl-trust-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.dl-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
}

.dl-trust-item .icon { font-size: 1rem; }

/* ── FEATURES ─────────────────────────────────────────────────────────────── */

.dl-features {
  background: #f0f6ff;
  padding: 72px 0;
}

.dl-features-inner { }

.dl-block-heading {
  text-align: center;
  margin-bottom: 48px;
}

.dl-block-heading h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #0a1628;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.dl-block-heading p {
  color: #64748b;
  font-size: 1rem;
  margin: 0;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.dl-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dl-feat-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(10, 22, 40, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dl-feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.14);
}

.dl-feat-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.dl-feat-icon-wrap.g1 { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.dl-feat-icon-wrap.g2 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.dl-feat-icon-wrap.g3 { background: linear-gradient(135deg, #fef9c3, #fde68a); }
.dl-feat-icon-wrap.g4 { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
.dl-feat-icon-wrap.g5 { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.dl-feat-icon-wrap.g6 { background: linear-gradient(135deg, #ffedd5, #fed7aa); }

.dl-feat-card h3 {
  font-size: 1.02rem;
  font-weight: 900;
  color: #0a1628;
  margin: 0 0 9px;
}

.dl-feat-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* ── DOWNLOAD-BOX ─────────────────────────────────────────────────────────── */

.dl-download-section {
  background: #060d18;
  padding: 72px 0;
}

.dl-download-card {
  background: linear-gradient(160deg, #0f1e33 0%, #152b48 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 48px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.dl-dl-info { }

.dl-dl-title {
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
}

.dl-dl-filename {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: monospace;
  margin: 0 0 24px;
}

.dl-dl-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.dl-dl-spec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.65);
}

.dl-dl-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 16px 0 0;
  line-height: 1.6;
}

.dl-dl-action { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.dl-main-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: #10b981;
  color: #fff;
  text-decoration: none;
  padding: 20px 40px;
  border-radius: 18px;
  white-space: nowrap;
  animation: dl-glow-pulse 2.5s ease-in-out infinite;
  transition: transform 0.15s, filter 0.15s;
}

.dl-main-btn:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.12);
  text-decoration: none;
  color: #fff;
  animation: none;
  box-shadow: 0 0 60px rgba(16, 185, 129, 0.65);
}

.dl-main-btn strong {
  font-size: 1.1rem;
  font-weight: 900;
  display: block;
}

.dl-main-btn small {
  font-size: 0.73rem;
  font-weight: 700;
  opacity: 0.72;
}

.dl-dl-unavail {
  text-align: center;
  padding: 48px;
  border: 2px dashed rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.35);
}

.dl-dl-unavail strong {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* ── INSTALLATION ─────────────────────────────────────────────────────────── */

.dl-install-section {
  background: #fff;
  padding: 72px 0;
}

.dl-install-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.dl-install-intro h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #0a1628;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.dl-install-intro p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 32px;
}

.dl-install-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  font-size: 0.82rem;
  font-weight: 800;
  color: #1d4ed8;
}

.dl-steps { display: flex; flex-direction: column; gap: 0; }

.dl-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f1f5f9;
}

.dl-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dl-step:first-child { padding-top: 0; }

.dl-step-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dl-step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 900;
  color: #fff;
  background: #3b82f6;
  flex-shrink: 0;
  z-index: 1;
}

.dl-step-warn .dl-step-num { background: #f59e0b; }

.dl-step-connector {
  width: 2px;
  flex: 1;
  background: #e2e8f0;
  margin-top: 4px;
}

.dl-step:last-child .dl-step-connector { display: none; }

.dl-step-body { padding-top: 8px; }

.dl-step-body h4 {
  font-size: 0.97rem;
  font-weight: 900;
  color: #0a1628;
  margin: 0 0 6px;
}

.dl-step-body p {
  font-size: 0.87rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

.dl-step-warn .dl-step-body {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 4px;
}

.dl-step-warn .dl-step-body h4 { color: #78350f; }

/* ── WIE ES FUNKTIONIERT ──────────────────────────────────────────────────── */

.dl-how-section {
  background: #f8fafc;
  padding: 72px 0;
}

.dl-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 48px;
}

.dl-how-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #10b981);
  border-radius: 999px;
  z-index: 0;
}

.dl-how-step {
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.dl-how-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: #fff;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.18);
  border: 3px solid #fff;
  outline: 3px solid #e0f2fe;
  transition: transform 0.2s, box-shadow 0.2s;
}

.dl-how-step:hover .dl-how-icon {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.28);
}

.dl-how-step h4 {
  font-size: 0.95rem;
  font-weight: 900;
  color: #0a1628;
  margin: 0 0 8px;
}

.dl-how-step p {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */

.dl-faq-section {
  background: #fff;
  padding: 72px 0;
}

.dl-faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 40px; }

.dl-faq-item {
  border-radius: 16px;
  border: 1.5px solid #e2e8f0;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.dl-faq-item[open] {
  border-color: #93c5fd;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.dl-faq-item summary {
  padding: 20px 24px;
  font-size: 0.97rem;
  font-weight: 800;
  color: #0a1628;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #fff;
  transition: background 0.12s;
}

.dl-faq-item summary::-webkit-details-marker { display: none; }

.dl-faq-item summary:hover { background: #f8fafc; }

.dl-faq-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  color: #64748b;
  transition: background 0.15s, transform 0.25s;
}

.dl-faq-item[open] .dl-faq-chevron {
  background: #3b82f6;
  color: #fff;
  transform: rotate(180deg);
}

.dl-faq-item[open] summary {
  border-bottom: 1.5px solid #e2e8f0;
}

.dl-faq-body {
  padding: 20px 24px;
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.75;
  background: #f8fafc;
}

/* ── ÄLTERE VERSIONEN ─────────────────────────────────────────────────────── */

.dl-older-section {
  background: #060d18;
  padding: 48px 0 72px;
}

.dl-older-section h2 {
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 6px;
}

.dl-older-section > .dl-w p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0 24px;
}

.dl-older-table {
  width: 100%;
  border-collapse: collapse;
  color: rgba(255, 255, 255, 0.65);
}

.dl-older-table th {
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 0 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dl-older-table td {
  padding: 14px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dl-older-table tr:last-child td { border-bottom: none; }

.dl-older-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
}

.dl-older-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
}

/* ── Layout-Wrapper ───────────────────────────────────────────────────────── */

.dl-w {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(28px, 5vw, 80px);
  box-sizing: border-box;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .dl-hero-layout { grid-template-columns: minmax(0, 1fr) minmax(240px, 40vw); gap: 48px; }
  .dl-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .dl-install-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .dl-hero { padding: 56px 0 48px; }
  .dl-hero-layout { grid-template-columns: 1fr; }
  .dl-phone-wrap { display: none; }
  .dl-hero-title { font-size: 2.8rem; }
  .dl-hero-cta { align-items: stretch; }
  .dl-hero-dl-btn { align-items: center; }
  .dl-block-heading h2 { font-size: 1.8rem; }
  .dl-feat-grid { grid-template-columns: 1fr; }
  .dl-download-card { grid-template-columns: 1fr; gap: 32px; }
  .dl-dl-action { align-items: stretch; }
  .dl-main-btn { align-items: center; }
  .dl-how-grid { grid-template-columns: repeat(2, 1fr); }
  .dl-how-grid::before { display: none; }
  .dl-features, .dl-download-section, .dl-install-section,
  .dl-how-section, .dl-faq-section { padding: 48px 0; }
}

@media (max-width: 480px) {
  .dl-hero-title { font-size: 2.2rem; }
  .dl-how-grid { grid-template-columns: 1fr; }
}

/* app.css setzt unter 860px wieder Seiten-Gutter — hier aushebeln */
@media (max-width: 860px) {
  body.page-download .app-shell {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.page-download .topbar {
    width: 100% !important;
    margin-left: 0 !important;
    transform: none !important;
    border-radius: 0 !important;
  }
}
