/* ==============================
   Deskora – Modern Glassmorphism
   ============================== */

:root {
  --bg:           #0a0e1a;
  --glass:        rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);

  /* Logo – warmes Teal/Cyan */
  --logo1:        #0ea5e9;
  --logo2:        #2dd4bf;
  --logo-glow:    rgba(14, 165, 233, 0.3);

  /* Buttons – dezentes, gedämpftes Slate-Blau */
  --btn:          #475569;
  --btn-hover:    #64748b;
  --btn-text:     #f1f5f9;
  --btn-glow:     rgba(71, 85, 105, 0.2);

  /* Allgemein */
  --accent2:      #a78bfa;
  --muted:        #94a3b8;
  --text:         #e8ecf4;
  --success:      #34d399;
  --danger:       #f87171;
}

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

html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(14, 165, 233, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(45, 212, 191, 0.05) 0%, transparent 60%);
  background-attachment: fixed;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

a {
  color: var(--accent2);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #c4b5fd;
}

a:visited {
  color: var(--accent2);
}

/* ==============================
   Layout
   ============================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================
   Header
   ============================== */
.header {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px 0 0 0;
  position: relative;
  z-index: 1000;
}

.header-top {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ---- Logo (Teal/Cyan Glassmorphism) ---- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo .mark {
  position: relative;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 1px;
  color: #fff;
  background: linear-gradient(135deg, var(--logo1) 0%, var(--logo2) 100%);
  box-shadow:
    0 0 18px var(--logo-glow),
    inset 0 0 10px rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.logo .mark::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.22) 0%,
    transparent 40%
  );
  pointer-events: none;
}

.site-texts {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.site-title {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, var(--logo2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-tagline {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 420px;
}

/* ==============================
   Navigation (Glass bar)
   ============================== */
.nav {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 14px;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--glass-border);
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.nav a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--logo1), var(--logo2));
  box-shadow: 0 0 10px var(--logo-glow);
}

.lang-dropdown {
  margin-left: auto;
  position: relative;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 0.85rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease;
  font-family: inherit;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.lang-options {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  list-style: none;
  margin: 0;
  padding: 8px 0 4px 0;
  background: transparent;
  border: none;
  min-width: 100%;
  z-index: 100;
}

.lang-options::after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1e293b;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  z-index: -1;
}

.lang-dropdown:hover .lang-options,
.lang-dropdown:focus-within .lang-options {
  display: block;
}

.lang-options li {
  position: relative;
  padding: 6px 14px;
  color: var(--text);
  cursor: pointer;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: background 0.2s ease;
  z-index: 1;
}

.lang-options li:hover {
  background: rgba(255, 255, 255, 0.15);
}

.lang-options li.selected {
  color: var(--logo1);
  font-weight: 600;
}

/* ==============================
   Hero Section
   ============================== */
.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  padding: 24px 0 24px 0;
}

.hero .copy {
  flex: 1;
  min-width: 300px;
}

.hero-sidebar {
  flex: 0 0 360px;
  min-width: 0;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, var(--logo2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lead {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 600px;
}

h1 {
  font-size: 1.8rem;
  margin: 0 0 12px 0;
  font-weight: 700;
}

h2 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lead {
  color: var(--muted);
  margin-bottom: 20px;
}

/* ==============================
   Free Badge (Hero)
   ============================== */
.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--success), #10b981);
  box-shadow:
    0 0 20px rgba(52, 211, 153, 0.3),
    inset 0 0 8px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 20px;
  animation: free-badge-pulse 3s ease-in-out infinite;
}

.free-badge .free-badge-icon {
  font-size: 1.1rem;
}

@keyframes free-badge-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(52, 211, 153, 0.3), inset 0 0 8px rgba(255,255,255,0.1); }
  50%      { box-shadow: 0 0 32px rgba(52, 211, 153, 0.5), 0 0 60px rgba(52, 211, 153, 0.15), inset 0 0 8px rgba(255,255,255,0.1); }
}

/* ==============================
   Before / After Comparison
   ============================== */
.before-after {
  margin-top: 0px;
  padding: 40px 0;
}

.before-after h2 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}

.before-after-intro {
  text-align: center;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 36px auto;
  line-height: 1.7;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}

.before-after-card {
  background: var(--glass);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.before-after-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
}

.before-after-card.before {
  border-color: rgba(248, 113, 113, 0.2);
}

.before-after-card.before:hover {
  border-color: rgba(248, 113, 113, 0.35);
}

.before-after-card.after {
  border-color: rgba(52, 211, 153, 0.2);
}

.before-after-card.after:hover {
  border-color: rgba(52, 211, 153, 0.35);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.28),
    0 0 14px rgba(52, 211, 153, 0.08);
}

.before-after-card .ba-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.before-after-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
}

.before-after-card.before h3 {
  color: var(--danger);
}

.before-after-card.after h3 {
  color: var(--success);
}

.before-after-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.before-after-card ul li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.before-after-card.before ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}

.before-after-card.after ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.before-after-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 2.5rem;
  color: var(--muted);
  opacity: 0.4;
}

@media (max-width: 768px) {
  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .before-after-arrow {
    padding: 8px 0;
    font-size: 1.8rem;
    transform: rotate(90deg);
  }
}

/* ==============================
   CTA Buttons (Dezent, gut lesbar)
   ============================== */
.cta {
  display: inline-block;
  background: var(--btn);
  color: var(--btn-text);
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  margin-right: 12px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  box-shadow: 0 2px 8px var(--btn-glow);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.cta:hover {
  background: var(--btn-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--btn-glow);
}

.cta:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px var(--btn-glow);
}

a.cta,
a.cta:visited {
  color: var(--btn-text);
}

/* ==============================
   Glass Cards
   ============================== */
.card {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border: 1px solid var(--glass-border);
  padding: 24px;
  border-radius: 16px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* ==============================
   Download Section
   ============================== */
.download-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.download-section .download-info {
  grid-column: 1 / -1;
}

.feature-card.download-info {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid rgba(14, 165, 233, 0.12);
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.06) 0%,
    rgba(45, 212, 191, 0.04) 100%
  );
  box-shadow:
    0 8px 32px rgba(14, 165, 233, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.feature-card.download-info h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.feature-card.download-info p {
  color: var(--muted);
  line-height: 1.6;
}

/* ==============================
   Features Grid / Cards (Glass)
   ============================== */
.features-heading {
  margin: 2.5rem 0 1.2rem;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text);
}

.features-heading:first-child {
  margin-top: 2.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--glass);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.28),
    0 0 14px rgba(14, 165, 233, 0.08);
  border-color: rgba(14, 165, 233, 0.2);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: #fff;
  font-size: 1.1rem;
}

.feature-card h2 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: #fff;
}

.feature-card p,
.feature-card li {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.feature-card ul {
  padding-left: 1.2rem;
}

.icon {
  filter: saturate(30%);
  transition: filter 0.2s ease;
}

.feature-card:hover .icon {
  filter: saturate(100%);
}

/* ==============================
   Privacy Transparency Section
   ============================== */
.privacy-transparency {
  margin-top: 48px;
  padding: 32px 0;
}

.privacy-transparency h2 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}

.privacy-intro {
  text-align: center;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 0 auto;
  line-height: 1.7;
}

.privacy-never-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-never-list li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.privacy-never-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ecb6a;
  font-weight: 700;
}

.privacy-purpose-text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  text-align: center;
  max-width: 700px;
  margin: 28px auto 0 auto;
}

.privacy-footer-link {
  text-align: center;
  margin-top: 12px;
}

.privacy-link {
  color: #6aabff;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.privacy-link:hover {
  color: #90c4ff;
  text-decoration: underline;
}

/* ==============================
   Advantages Section
   ============================== */
.advantages {
  margin-top: 48px;
  padding: 32px 0;
}

.advantages h2 {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}

.advantages-intro {
  text-align: center;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 32px auto;
  line-height: 1.7;
}

/* ==============================
   Screenshot / Lightbox
   ============================== */
#lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  border-radius: 8px;
}

/* ==============================
   Cookie Banner (Glass)
   ============================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-top: 1px solid var(--glass-border);
  color: var(--text);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-size: 0.88rem;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
}

.cookie-banner button {
  background: var(--btn);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  color: var(--btn-text);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.15s ease, transform 0.15s ease;
}

.cookie-banner button:hover {
  background: var(--btn-hover);
  transform: translateY(-1px);
}

.cookie-banner button#cookie-decline {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--muted);
}

.cookie-banner button#cookie-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

/* ==============================
   Footer
   ============================== */
.footer {
  margin-top: 64px;
  padding: 32px 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer a {
  color: var(--accent2);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #c4b5fd;
  text-decoration: underline;
}

.footer a:visited {
  color: var(--accent2);
}

/* ==============================
   Contact Form (Glass)
   ============================== */
.card input[type="text"],
.card input[type="email"],
.card textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card input[type="text"]:focus,
.card input[type="email"]:focus,
.card textarea:focus {
  outline: none;
  border-color: var(--logo1);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.card textarea {
  min-height: 120px;
  resize: vertical;
}

/* ==============================
   Compact Feature List (features.php)
   ============================== */
.feature-list {
  margin-top: 0.5rem;
}

.fl-group-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
  margin-bottom: 0.4rem;
  padding: 0 4px;
}

.fl-group-label:first-child {
  margin-top: 0;
}

.fl-group-label span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--logo2);
  white-space: nowrap;
}

.fl-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.25), transparent);
}

.fl-group-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 0;
}

.feature-list-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease;
}

.feature-list-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.feature-list-item::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--logo2);
  opacity: 0.5;
  margin-top: 7px;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.feature-list-item:hover::before {
  opacity: 1;
  box-shadow: 0 0 6px rgba(45, 212, 191, 0.4);
}

.feature-list-item .fl-text {
  min-width: 0;
}

.feature-list-item .fl-text h4 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  display: inline;
}

.feature-list-item .fl-text h4::after {
  content: ' — ';
  color: rgba(255, 255, 255, 0.15);
  font-weight: 400;
}

.feature-list-item .fl-text p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  display: inline;
}

/* ==============================
   Eye-Catcher Banner
   ============================== */
.eyecatcher {
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  text-align: center;
  margin-bottom: 0px;
}

.eyecatcher-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(14, 165, 233, 0.15) 0%,
    rgba(45, 212, 191, 0.08) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  animation: eyecatcher-pulse 4s ease-in-out infinite;
}

@keyframes eyecatcher-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

.eyecatcher-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.eyecatcher-link {
  display: block;
  text-decoration: none;
  width: min(90%, 700px);
}

a.eyecatcher-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--logo1), var(--logo2));
  box-shadow:
    0 0 16px var(--logo-glow),
    inset 0 0 8px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: eyecatcher-badge-glow 3s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.eyecatcher-badge:visited {
  color: #fff;
}

a.eyecatcher-badge:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 32px var(--logo-glow),
    0 0 60px rgba(14, 165, 233, 0.15),
    inset 0 0 8px rgba(255, 255, 255, 0.1);
}

@keyframes eyecatcher-badge-glow {
  0%, 100% { box-shadow: 0 0 16px var(--logo-glow), inset 0 0 8px rgba(255,255,255,0.1); }
  50%      { box-shadow: 0 0 28px var(--logo-glow), 0 0 60px rgba(14,165,233,0.12), inset 0 0 8px rgba(255,255,255,0.1); }
}

/* ---- Screenshot Slideshow ---- */
.eyecatcher-slideshow {
  position: relative;
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(14, 165, 233, 0.06);
  overflow: hidden;
  background: var(--bg);
  transition: box-shadow 0.4s ease;
}

.eyecatcher-slideshow:hover {
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 28px rgba(14, 165, 233, 0.1);
}

.eyecatcher-slideshow img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.eyecatcher-slideshow img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}

.eyecatcher-slideshow img.active {
  opacity: 1;
}

/* ---- Slideshow Indicator Dots ---- */
.eyecatcher-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 4px;
}

.eyecatcher-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}

.eyecatcher-dots .dot.active {
  background: var(--logo1);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--logo-glow);
}

/* ==============================
   Features Full-Width Section
   ============================== */
.features-fullwidth {
  padding: 32px 0;
}

.features-fullwidth h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

/* ==============================
   Quick Overview Highlights
   ============================== */
.quick-overview {
  padding-left: 0;
  list-style: none;
}

.quick-overview li {
  position: relative;
  padding: 4px 0 4px 20px;
}

.quick-overview li::before {
  content: '›';
  position: absolute;
  left: 4px;
  color: var(--muted);
  font-weight: 700;
}

.quick-overview li.highlight {
  color: #fff;
  font-weight: 600;
}

.quick-overview li.highlight::before {
  content: '★';
  left: 2px;
  font-size: 0.7rem;
  top: 7px;
  color: var(--logo1);
  filter: drop-shadow(0 0 4px var(--logo-glow));
}

/* ==============================
   Screen Reader Only (Accessibility)
   ============================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==============================
   Responsive
   ============================== */
@media (max-width: 768px) {
  .hero {
    padding: 28px 0 16px 0;
    gap: 24px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .lead {
    font-size: 1rem;
  }

  .header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .site-texts {
    flex-direction: column;
    gap: 4px;
  }

  .nav {
    gap: 4px;
    padding: 8px 10px;
  }

  .nav a {
    padding: 6px 10px;
    font-size: 0.85rem;
  }

  .lang-dropdown {
    margin-left: 0;
    margin-top: 4px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 16px;
  }
}

@media (max-width: 640px) {
  .download-section {
    grid-template-columns: 1fr;
  }

  .eyecatcher-glow {
    width: 300px;
    height: 200px;
  }

  .eyecatcher-link {
    width: 95%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .cta {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ==============================
   Primary CTA (grün, Download)
   ============================== */
.cta-primary {
  background: linear-gradient(135deg, var(--success), #10b981);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 0 20px rgba(52, 211, 153, 0.3),
    inset 0 0 8px rgba(255, 255, 255, 0.1);
  font-size: 1.05rem;
  padding: 14px 28px;
  animation: free-badge-pulse 3s ease-in-out infinite;
}

.cta-primary:hover {
  background: linear-gradient(135deg, #2dd4a8, #059669);
  transform: translateY(-2px);
  box-shadow:
    0 0 32px rgba(52, 211, 153, 0.4),
    0 0 60px rgba(52, 211, 153, 0.15),
    inset 0 0 8px rgba(255, 255, 255, 0.1);
}

/* ==============================
   Trust Signals
   ============================== */
.trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Before/After Image Comparison Slider ── */
.ba-slider-container {
  max-width: 800px;
  margin: 0 auto 36px auto;
}

.ba-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  aspect-ratio: 16 / 9;
}

.ba-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-image-before {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.ba-label {
  position: absolute;
  bottom: 16px;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.ba-label-before {
  left: 16px;
  background: rgba(248, 113, 113, 0.25);
  color: var(--danger);
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.ba-label-after {
  right: 16px;
  background: rgba(52, 211, 153, 0.25);
  color: var(--success);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.ba-handle-line {
  flex: 1;
  width: 3px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
}

.ba-handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  pointer-events: auto;
}

@media (max-width: 768px) {
  .ba-slider-container {
    margin: 0 16px 24px 16px;
  }
  .ba-handle-circle {
    width: 36px;
    height: 36px;
    font-size: 0.65rem;
  }
}

.social-follow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: 15px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

/* YouTube */
.social-btn.youtube {
  background: #ff0000;
  color: white;
}
.social-btn.youtube:hover {
  background: #cc0000;
}

/* TikTok */
.social-btn.tiktok {
  background: #000000;
  color: white;
}
.social-btn.tiktok:hover {
  background: #222;
}

@media (max-width: 768px) {
  .social-follow {
  display: flex;
  gap: 8px;
  align-items: center;
}
}

/* ==============================
   Hub Featured Heading Spacing
   ============================== */
#hub-featured-heading {
  margin-bottom: 1.5rem;
}

#hub-articles-heading {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}
/* ==============================
   Eyecatcher als Standalone-Section
   (auf Landing Pages & Hub)
   ============================== */
.eyecatcher-section {
    margin: 2.5rem 0;
}

/* ==============================
   SEO Hub Teaser (index.php)
   ============================== */
.hub-teaser {
    margin-top: 48px;
}

.hub-teaser-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 2rem 2.5rem;
    background: var(--glass);
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    border: 1px solid var(--glass-border);
    border-top: 2px solid var(--logo1);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 40px rgba(14, 165, 233, 0.04) inset;
}

.hub-teaser-icon {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 8px;
}

.hub-teaser h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 6px 0;
    background: linear-gradient(135deg, #fff 0%, var(--logo2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hub-teaser p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 560px;
    margin: 0;
}

.hub-teaser-cta {
    flex-shrink: 0;
}

@media (max-width: 680px) {
    .hub-teaser-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hub-teaser-cta {
        width: 100%;
        text-align: center;
    }
}

/* ==============================
   Feature Card "Mehr erfahren"-Link
   ============================== */
.fl-more {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--logo2);
  text-decoration: none;
  transition: color 0.2s ease;
}

.fl-more:visited { color: var(--logo2); }
.fl-more:hover   { color: #fff; }

/* ==============================
   Vergleichs-/Alternativen-Section
   ============================== */
.compare-section {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--glass-border);
}

.compare-section h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.compare-section > p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 1.5rem;
}

.compare-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.compare-card h3 {
  color: #fff;
}

.compare-card p {
  flex-grow: 1;
}

.compare-read {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--logo2);
  transition: color 0.2s ease;
}

.compare-card:hover .compare-read {
  color: #fff;
}