/* ============================================================
   ENERGYDEALZ – Globales Stylesheet
   Alle Seiten laden diese Datei.
   Design-Tokens (Farben, Fonts etc.) als CSS-Variablen in :root.
   Änderungen hier wirken global auf alle Seiten.
   ============================================================ */

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Farben */
  --color-accent:        #46ff3b;               /* Neon-Grün */
  --color-bg:            #000000;               /* Hintergrund */
  --color-card:          #0b0b0b;               /* Karte */
  --color-card-alt:      #111111;               /* Karte dunkel (Cookie-Banner etc.) */
  --color-input:         #090909;               /* Input-Felder */
  --color-text:          #e6e6e6;               /* Haupttext */
  --color-text-muted:    #9b9b9b;               /* Gedimmt */
  --color-text-dim:      #7a7a7a;               /* Sehr gedimmt (Labels) */
  --color-text-label:    #d3d3d3;               /* Form-Labels */
  --color-border-subtle: rgba(70, 255, 59, 0.05); /* Kaum sichtbar */
  --color-border:        rgba(70, 255, 59, 0.1);  /* Standard */
  --color-border-strong: rgba(70, 255, 59, 0.25); /* Betont */
  --color-border-strip:  rgba(70, 255, 59, 0.07); /* Trennlinien */
  --color-input-border:  #222222;               /* Input-Rahmen */

  /* Glow */
  --glow-xs:  rgba(70, 255, 59, 0.15);
  --glow-sm:  rgba(70, 255, 59, 0.2);
  --glow-md:  rgba(70, 255, 59, 0.35);
  --glow-lg:  rgba(70, 255, 59, 0.5);
  --glow-xl:  rgba(70, 255, 59, 0.7);

  /* Typografie */
  --font-primary: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Abstände & Radien */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --max-width:  1200px;
}

/* ── BASIS ────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

html { overflow-x: clip; }

body {
  font-family: var(--font-primary);
  background:  var(--color-bg);
  color:       var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { font-weight: 700; }

/* ── SCROLL OFFSET (sticky Header) ───────────────────────── */
[id] { scroll-margin-top: 90px; }
@media (min-width: 768px) {
  [id] { scroll-margin-top: 135px; }
}

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  background:     rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-bottom:  1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 10px var(--glow-xs));
}
@media (min-width: 768px) {
  .logo img    { height: 100px; }
  .header-inner { padding: 15px 20px; }
}

/* ── MOBILE NAVIGATION ────────────────────────────────────── */
.main-nav {
  display: none;
  flex-direction: column;
  width: 100%;
  position: absolute;
  top: 80px;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  padding: 10px 0;
  border-top: 1px solid var(--color-border);
}
.main-nav a {
  padding: 10px 20px;
  border-bottom: 1px solid var(--color-border-subtle);
}
.main-nav.active { display: flex; }
@media (min-width: 768px) {
  .main-nav {
    display: flex !important;
    flex-direction: row;
    position: static;
    top: auto;
    width: auto;
    background: transparent;
    padding: 0;
    border-top: none;
  }
  .main-nav a {
    border-bottom: none;
    padding: 0;
  }
}

/* ── HERO ─────────────────────────────────────────────────── */
.enhanced-hero {
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 10% 30%, rgba(70, 255, 59, 0.06), transparent 80%),
    linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg) 100%);
}
@media (max-width: 980px) {
  .enhanced-hero h1 { font-size: 42px; }
  .hero-left > div  { flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  .enhanced-hero h1 { font-size: 36px; }
}

.energy-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: repeating-linear-gradient(
    -45deg,
    rgba(70, 255, 59, 0.05), rgba(70, 255, 59, 0.05) 1px,
    var(--color-bg) 1px, var(--color-bg) 20px
  );
  mix-blend-mode: lighten;
  animation: moveBg 60s linear infinite;
  z-index: 1;
}
@keyframes moveBg {
  0%   { background-position: 0 0; }
  100% { background-position: 1000px 1000px; }
}

.hero-content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 5;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.hero-left  { flex: 1; padding-right: 10px; }
.hero-right { flex: 1; display: flex; align-items: center; justify-content: center; }

.hero-title-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}
.hero-lightning {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}
.enhanced-hero h1 { font-size: 48px; line-height: 1.02; font-weight: 700; color: #fff; }

.glow-green  { color: var(--color-accent); text-shadow: 0 0 12px var(--glow-md), 0 0 28px var(--glow-xs); }
.white-text  { color: #fff; }

.hero-illustration {
  width: 340px;
  border-radius: var(--radius-sm);
  background: transparent;
  box-shadow: 0 0 24px var(--glow-sm), 0 0 40px rgba(0,0,0,0.6);
}

/* ── CTA BUTTON ───────────────────────────────────────────── */
.neon-btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 10px;
  border: 2px solid var(--color-border-strong);
  color: var(--color-accent);
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  box-shadow: 0 4px 20px var(--glow-xs);
  transition: all .22s ease;
}
.neon-btn:hover {
  background: var(--color-accent);
  color: #04110a;
  box-shadow: 0 0 26px var(--glow-xl), 0 8px 40px var(--glow-xs);
  transform: translateY(-3px);
}

/* CTA Pulse-Ring */
@keyframes pulse-ring {
  0%        { opacity: 0.7; inset: -3px; }
  70%, 100% { opacity: 0;   inset: -12px; }
}
a.cta.neon-btn { position: relative; }
a.cta.neon-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 13px;
  border: 2px solid var(--glow-xl);
  animation: pulse-ring 2.2s ease-out infinite;
  pointer-events: none;
}
a.cta.neon-btn:hover::before { animation: none; }

/* ── ANGEBOTSKARTEN ───────────────────────────────────────── */
.offer-section {
  padding: 50px 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
@media (min-width: 1024px) {
  .offer-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1023px) and (min-width: 640px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}
.offer-card {
  background: var(--color-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: all .25s;
  height: 100%;
}
.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--glow-xs);
}
.offer-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--glow-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.offer-icon i {
  color: var(--color-accent);
  font-size: 28px;
  text-shadow: 0 0 8px var(--glow-lg);
}

/* ── KUNDENAUSWAHL & VORTEILE ─────────────────────────────── */
.dynamic-content { padding: 30px 0 60px; background: transparent; }
.customer-selection {
  border-radius: var(--radius-lg);
  background: var(--color-card);
  border: 1px solid var(--color-border);
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  max-width: 600px;
  margin: 40px auto;
}
.customer-option {
  flex: 1;
  min-width: 260px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(70,255,59,0.01), transparent);
  border: 1px solid transparent;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.customer-option.active  { border-color: var(--color-accent); box-shadow: 0 0 24px var(--glow-sm); }
.customer-option:hover   { transform: translateY(-6px); box-shadow: 0 12px 36px var(--glow-xs); }
.customer-content        { display: none; padding: 24px 0; }
.customer-content.active { display: block; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.benefit-card {
  background: linear-gradient(180deg, var(--color-card), #0f0f0f);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: all .2s;
  text-align: center;
  height: 100%;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 18px 50px var(--glow-xs); }
.benefit-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(70,255,59,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.benefit-icon i { color: var(--color-accent); font-size: 26px; }

/* ── FORMULAR ─────────────────────────────────────────────── */
.form-section { padding-top: 50px; }
.form-card, .contact-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
}
.form-inner { display: flex; gap: 28px; align-items: flex-start; }
.form-card  { flex: 1; padding: 24px; border-radius: var(--radius-md); }

form label { display: block; margin-top: 10px; font-weight: 700; color: var(--color-text-label); }

input[type="text"],
input[type="number"],
input[type="email"],
input[type="file"],
select,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-input-border);
  background: var(--color-input);
  color: #fff;
  margin-top: 8px;
  font-size: 15px;
  transition: border-color 0.2s;
}
input[type="file"] { padding-top: 10px; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 10px var(--glow-md);
}

/* Radio Buttons (rechteckig – Tarifart) */
.radio-group  { display: flex; gap: 10px; margin-top: 8px; margin-bottom: 20px; }
.radio-label  {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-input-border);
  background: var(--color-input);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.radio-input { display: none; }
.radio-input:checked + .radio-label {
  background: var(--glow-xs);
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: 0 0 10px var(--glow-md);
}

/* Radio Buttons (rund – Kundenkategorie) */
.customer-type-group {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  margin-bottom: 20px;
}
.customer-type-input { display: none; }
.customer-type-label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 50px;
  border: 1px solid var(--color-input-border);
  background: var(--color-input);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.customer-type-label::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--color-input-border);
  flex-shrink: 0;
  transition: all 0.2s;
}
.customer-type-input:checked + .customer-type-label {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(70, 255, 59, 0.06);
  box-shadow: 0 0 12px var(--glow-xs);
}
.customer-type-input:checked + .customer-type-label::before {
  border-color: var(--color-accent);
  background: var(--color-accent);
  box-shadow: 0 0 6px var(--glow-md);
}

/* Zertifikat-Vorschau (linke Spalte Über mich) */
.zertifikat-preview {
  display: block;
  width: 100%;
  max-width: 220px;
  border-radius: 10px;
  border: 1px solid rgba(70,255,59,0.35);
  box-shadow: 0 0 14px rgba(70,255,59,0.1);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.25s, transform 0.25s;
}
.zertifikat-preview:hover {
  box-shadow: 0 0 24px rgba(70,255,59,0.28);
  transform: scale(1.015);
}
.zertifikat-preview img { width: 100%; display: block; }
.zertifikat-preview-caption {
  display: block;
  text-align: center;
  padding: 6px 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(70,255,59,0.06);
  letter-spacing: 0.03em;
}

/* Checkbox */
.consent label { font-weight: 400; }
.consent-link { color: var(--color-accent); text-decoration: underline; text-underline-offset: 2px; }
.consent-link:hover { opacity: 0.8; }
.custom-checkbox {
  appearance: none;
  height: 18px;
  width: 18px;
  border: 2px solid var(--color-accent);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  margin-right: 8px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}
.custom-checkbox:checked              { background-color: var(--color-accent); border-color: var(--color-accent); }
.custom-checkbox:checked:after        { content: '\2713'; display: block; position: absolute; top: -1px; left: 2px; color: var(--color-bg); font-size: 14px; line-height: 1; }

/* Submit Button */
.btn-submit {
  margin-top: 16px;
  background: var(--color-accent);
  color: #04110a;
  border: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 22px var(--glow-md);
  transition: all 0.2s ease-in-out;
}
.btn-submit:hover    { box-shadow: 0 0 30px var(--glow-xl), 0 5px 15px rgba(0,0,0,0.5); transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Kontakt-Karte */
.contact-card { width: 320px; padding: 22px; border-radius: var(--radius-md); }
.contact-card a        { color: var(--color-text); transition: color 0.2s; }
.contact-card a:hover  { color: var(--color-accent); }

/* ── STATS STRIP ──────────────────────────────────────────── */
.stats-strip {
  background: var(--color-bg);
  border-top:    1px solid var(--color-border-strip);
  border-bottom: 1px solid var(--color-border-strip);
  padding: 18px 0;
}
.stats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 32px;
  border-right: 1px solid var(--color-border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-accent);
  text-shadow: 0 0 10px var(--glow-lg);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--color-text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}
@media (max-width: 600px) {
  .stat-item {
    width: 50%;
    border-right: none;
    border-bottom: 1px solid var(--color-border-strip);
    padding: 10px 0;
  }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ── SECTION DIVIDERS ─────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-border-strong) 50%, transparent 100%);
  position: relative;
}
.section-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -3px;
  transform: translateX(-50%);
  width: 50px;
  height: 7px;
  background: var(--glow-md);
  border-radius: 4px;
  filter: blur(5px);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer      { padding: 36px 0 12px; background: var(--color-bg); color: var(--color-text-muted); }
.footer-inner     { display: flex; gap: 18px; justify-content: space-between; align-items: flex-start; }
.firmenname-footer { color: var(--color-accent); font-weight: 800; }

/* ── SOCIAL BAR (floating) ────────────────────────────────── */
.social-bar { position: fixed; right: 18px; bottom: 20px; display: flex; flex-direction: column; gap: 12px; z-index: 60; }
.social-item {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.social-item:hover { background: var(--color-accent); color: var(--color-bg); box-shadow: 0 0 22px var(--glow-xl); }

/* Tooltip */
.social-item .tooltip {
  visibility: hidden;
  width: 80px;
  background-color: var(--color-accent);
  color: var(--color-bg);
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  right: 120%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
  font-weight: 600;
}
.social-item:hover .tooltip { visibility: visible; opacity: 1; }

/* FAB trigger – versteckt auf Desktop */
.fab-trigger { display: none; }

/* ── SOCIAL BAR MOBILE – Speed-Dial FAB ──────────────────── */
@media (max-width: 767px) {
  .social-bar { right: 16px; bottom: 20px; align-items: center; gap: 10px; }

  /* Icons standardmäßig versteckt */
  .social-bar .social-item {
    opacity: 0;
    transform: scale(0.5) translateY(8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    width: 48px; height: 48px;
  }

  /* Gestaffelte Einblendung: Email (nächste am Trigger) zuerst */
  .social-bar.fab-open .social-item:nth-child(3) { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; transition-delay: 0.05s; }
  .social-bar.fab-open .social-item:nth-child(2) { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; transition-delay: 0.13s; }
  .social-bar.fab-open .social-item:nth-child(1) { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; transition-delay: 0.21s; }

  /* Kein Tooltip auf Mobile */
  .social-bar .tooltip { display: none !important; }

  /* FAB-Button */
  .fab-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-bg);
    border: none;
    cursor: pointer;
    font-size: 22px;
    animation: fabPulse 2.5s ease-in-out infinite;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  .social-bar.fab-open .fab-trigger {
    transform: rotate(45deg);
    animation: none;
    box-shadow: 0 0 24px var(--glow-xl);
  }
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 0 14px rgba(70,255,59,0.55), 0 0 28px rgba(70,255,59,0.2); }
  50%       { box-shadow: 0 0 28px rgba(70,255,59,0.95), 0 0 52px rgba(70,255,59,0.4); }
}

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal          { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible  { opacity: 1; transform: translateY(0); }
.reveal-d1       { transition-delay: 0.1s; }
.reveal-d2       { transition-delay: 0.2s; }
.reveal-d3       { transition-delay: 0.3s; }
.reveal-d4       { transition-delay: 0.4s; }

/* ── COOKIE BANNER ────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--color-card-alt);
  border-top: 2px solid var(--color-accent);
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-primary);
  box-shadow: 0 -4px 20px var(--glow-xs);
}
#cookie-banner p    { color: #d1d5db; font-size: 0.85rem; margin: 0; max-width: 700px; }
#cookie-banner a    { color: var(--color-accent); text-decoration: underline; }

.cookie-btn-accept {
  background: var(--color-accent);
  color: var(--color-bg);
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.cookie-btn-accept:hover { opacity: 0.85; }

.cookie-btn-decline {
  background: transparent;
  color: #9ca3af;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border: 1px solid #374151;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: border-color 0.2s;
}
.cookie-btn-decline:hover { border-color: #6b7280; color: #d1d5db; }

/* ── CONTENT SEITEN (Impressum, Datenschutz, Blog etc.) ──── */
/* Scoped auf .page-content um index.html nicht zu beeinflussen */
.page-content a                { color: var(--color-accent); }
.page-content a:hover          { text-decoration: underline; }
.page-content h1,
.page-content h2,
.page-content h3               { color: var(--color-accent); }
.page-content strong           { color: #fff; }
.page-content ul               { list-style: disc; padding-left: 1.5rem; }
.page-content ul li            { margin-bottom: 0.3rem; }
.section {
  border-left: 3px solid var(--color-accent);
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

/* ── PARTNER LOGOS KARUSSELL ──────────────────────────────── */
.partner-section {
  background: var(--color-bg);
  padding: 18px 0 22px;
  border-top:    1px solid var(--color-border-strip);
  border-bottom: 1px solid var(--color-border-strip);
}
.partner-section-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
  margin-bottom: 14px;
}
.partner-strip {
  overflow: hidden;
  position: relative;
  /* Fade-out Ränder */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.partner-strip-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll-partners 35s linear infinite;
}
.partner-strip:hover .partner-strip-inner {
  animation-play-state: paused;
}
@keyframes scroll-partners {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 6px 28px;
  border-right: 1px solid var(--color-border-strip);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--color-text-dim);
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: default;
}
.partner-item:hover { color: var(--color-accent); }
.partner-logo {
  height: 34px;
  width: auto;
  max-width: 96px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.8) opacity(0.65);
  transition: filter 0.25s, opacity 0.25s;
}
.partner-item:hover .partner-logo {
  filter: grayscale(0) brightness(1.1) opacity(1);
}

/* ── ÜBER MICH SEKTION ────────────────────────────────────── */
.ueber-mich-section {
  background: var(--color-bg);
  padding: 56px 0 64px;
}
.ueber-mich-inner {
  display: flex;
  gap: 64px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
.ueber-mich-photo-col { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; }

.ueber-mich-photo-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--color-border-strong);
  box-shadow: 0 0 30px var(--glow-sm), 0 0 60px rgba(0,0,0,0.8);
  width: 300px;
}
.ueber-mich-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.lang-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 13px;
  border-radius: 20px;
  background: rgba(70,255,59,0.07);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.lang-badge i { color: var(--color-accent); font-size: 0.72rem; }

.lizenz-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(70,255,59,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.ueber-mich-subtitle {
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.ueber-mich-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.ueber-mich-stat {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ueber-mich-stat:hover {
  border-color: var(--color-border-strong);
  box-shadow: 0 0 14px var(--glow-xs);
}
.ueber-mich-stat-num {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-accent);
  text-shadow: 0 0 10px var(--glow-md);
  line-height: 1.1;
}
.ueber-mich-stat-label {
  display: block;
  font-size: 0.67rem;
  color: var(--color-text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 5px;
}

@media (max-width: 1023px) {
  .ueber-mich-inner       { flex-direction: column; gap: 40px; text-align: center; }
  .ueber-mich-stats       { grid-template-columns: repeat(2, 1fr); }
  .ueber-mich-subtitle    { text-align: center; }
  .lizenz-badge           { justify-content: center; }
}
@media (max-width: 600px) {
  .ueber-mich-photo-frame { width: 240px; }
}

/* ── FAQ SEKTION ──────────────────────────────────────────── */
.faq-section {
  background: var(--color-bg);
  padding: 56px 0 64px;
}
.faq-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item.open {
  border-color: var(--color-border-strong);
  box-shadow: 0 0 18px var(--glow-xs);
}
.faq-question {
  width: 100%;
  background: var(--color-card);
  border: none;
  padding: 18px 22px;
  text-align: left;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s, color 0.2s;
}
.faq-question:hover          { background: rgba(70,255,59,0.04); color: var(--color-accent); }
.faq-item.open .faq-question { background: rgba(70,255,59,0.05); color: var(--color-accent); }
.faq-chevron {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.38s ease;
  background: var(--color-card);
  padding: 0 22px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 22px 20px;
}
.faq-answer p {
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 0.97rem;
  border-left: 3px solid var(--color-accent);
  padding-left: 14px;
  margin: 0;
}
.faq-answer strong { color: #fff; }

/* ── SO FUNKTIONIERT'S – 3 SCHRITTE ──────────────────────── */
.so-funktionierts-section {
  background: var(--color-bg);
  padding: 56px 0 64px;
}
.steps-eyebrow {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 20px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.step-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px 28px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.step-card:hover {
  border-color: var(--color-border-strong);
  box-shadow: 0 0 28px var(--glow-xs);
  transform: translateY(-6px);
}
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #04110a;
  font-size: 0.88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px var(--glow-md);
}
.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(70, 255, 59, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 16px;
}
.step-icon i {
  color: var(--color-accent);
  font-size: 26px;
  text-shadow: 0 0 8px var(--glow-lg);
}
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.step-connector {
  color: var(--color-border-strong);
  font-size: 1.3rem;
  text-align: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .step-connector {
    transform: rotate(90deg);
    margin: 2px auto;
    display: block;
  }
}

/* ── UNTERSEITEN – HERO & SEKTIONEN ──────────────────────── */
.subpage-hero {
  padding: 44px 0 52px;
  background:
    radial-gradient(900px 400px at 10% 50%, rgba(70,255,59,0.05), transparent 80%),
    var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.subpage-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.subpage-hero-inner { z-index: 2; }
.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background: repeating-linear-gradient(
    -45deg,
    rgba(70,255,59,0.05), rgba(70,255,59,0.05) 1px,
    transparent 1px, transparent 20px
  );
  pointer-events: none;
}
.subpage-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
.subpage-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.subpage-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}
.subpage-hero .lead {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .subpage-hero h1 { font-size: 1.9rem; }
  .subpage-hero    { padding: 32px 0 40px; }
}

/* 3-Spalten Variante für Angebotskarten auf Unterseiten */
.offer-grid--3 {
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .offer-grid--3 { grid-template-columns: repeat(3, 1fr) !important; }
}

/* Sparbeispiel-Box */
.savings-section {
  background: var(--color-bg);
  padding: 56px 0 64px;
}
.savings-box {
  background: linear-gradient(135deg, rgba(70,255,59,0.06), rgba(70,255,59,0.02));
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}
.savings-amount {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--color-accent);
  text-shadow: 0 0 20px var(--glow-md);
  line-height: 1;
  display: block;
}
.savings-label {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 10px;
  display: block;
}
.savings-sublabel {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin-top: 6px;
  display: block;
}
.savings-note {
  font-size: 0.75rem;
  color: var(--color-text-dim);
  margin-top: 16px;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}

/* CTA-Banner auf Unterseiten */
.cta-banner-section {
  background: linear-gradient(135deg, rgba(70,255,59,0.05) 0%, rgba(70,255,59,0.02) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 56px 0;
  text-align: center;
}
.cta-banner-section h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-banner-section p {
  color: var(--color-text-muted);
  margin-bottom: 28px;
  font-size: 1rem;
}

/* Nav-CTA-Button (Tarifanfrage im Header) */
.nav-cta {
  padding: 8px 18px !important;
  border: 1px solid var(--color-border-strong) !important;
  border-radius: 8px !important;
  color: var(--color-accent) !important;
  font-weight: 700 !important;
  transition: all .2s ease !important;
}
.nav-cta:hover {
  background: var(--color-accent) !important;
  color: #04110a !important;
  box-shadow: 0 0 16px var(--glow-md) !important;
}

/* ── RESPONSIVE (allgemein) ───────────────────────────────── */
@media (max-width: 980px) {
  .hero-content-wrapper { flex-direction: column; text-align: center; }
  .hero-left            { width: 100%; justify-content: center; }
  .hero-right           { width: 100%; margin-top: 18px; display: flex; justify-content: center; }
  .hero-illustration    { width: 320px; }
  .footer-inner         { flex-direction: column; }
  .form-inner           { flex-direction: column; }
  .contact-card         { width: 100%; }
  .hero-title-container { flex-direction: row; gap: 15px; text-align: left; justify-content: center; }
  .hero-lightning       { width: 50px; }
}
@media (max-width: 600px) {
  .enhanced-hero h1  { font-size: 36px; }
  .hero-illustration { width: 220px; }
  .hero-lightning    { width: 40px; }
}
@media (max-width: 480px) {
  .hero-title-container { gap: 12px; }
  .hero-lightning       { width: 35px; }
  .enhanced-hero h1     { font-size: 32px; }
}

/* ── BLOG – ÜBERSICHTSSEITE (blog.html) ──────────────────── */
.blog-section {
  background: var(--color-bg);
  padding: 56px 0 72px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.blog-card:hover {
  border-color: var(--color-border-strong);
  box-shadow: 0 0 24px var(--glow-xs);
  transform: translateY(-3px);
}
.blog-card-top { margin-bottom: 2px; }
.blog-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(70,255,59,0.08);
  border: 1px solid rgba(70,255,59,0.2);
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
}
.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.blog-card-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card-title a:hover { color: var(--color-accent); }
.blog-card-excerpt {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  flex-grow: 1;
  margin: 0;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}
.blog-card-date {
  font-size: 0.8rem;
  color: var(--color-text-dim);
}
.blog-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.blog-card-link:hover { opacity: 0.75; }

/* ── BLOG – ARTIKEL BYLINE ───────────────────────────────── */
.article-byline {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0.5rem 0 1.5rem;
  letter-spacing: 0.01em;
}
.article-byline strong { color: var(--color-accent); }

/* ── BLOG – ARTIKEL-LAYOUT ───────────────────────────────── */
.blog-article-section {
  background: var(--color-bg);
  padding: 52px 0 72px;
}
.blog-article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) {
  .blog-article-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar { order: -1; }
}

/* Artikeltext */
.blog-article-body {
  min-width: 0;
}
.article-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  border-left: 3px solid var(--color-accent);
  padding-left: 18px;
  margin-bottom: 2rem;
}
.blog-article-body h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  margin: 2.2rem 0 0.8rem;
  line-height: 1.25;
}
.blog-article-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: 1.6rem 0 0.6rem;
}
.blog-article-body p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.blog-article-body ul,
.blog-article-body ol {
  color: var(--color-text-muted);
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.blog-article-body li { margin-bottom: 0.4rem; }
.blog-article-body strong { color: #fff; }
.blog-article-body a { color: var(--color-accent); }
.blog-article-body a:hover { text-decoration: underline; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-text-dim);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--color-text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb-sep {
  font-size: 0.65rem;
  opacity: 0.5;
}

/* Tabellen in Artikeln */
.savings-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.savings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.savings-table th {
  background: rgba(70,255,59,0.06);
  color: var(--color-accent);
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}
.savings-table td {
  padding: 11px 16px;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}
.savings-table tr:last-child td { border-bottom: none; }
.savings-table tr:hover td { background: rgba(70,255,59,0.02); }
.savings-highlight { font-weight: 700; color: #fff; }
.table-note {
  font-size: 0.78rem;
  color: var(--color-text-dim);
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Vergleichstabelle (Artikel 2) */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.comparison-table th {
  background: rgba(70,255,59,0.06);
  color: var(--color-accent);
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
}
.comparison-table td {
  padding: 11px 16px;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(70,255,59,0.02); }
.comparison-table .highlight { color: var(--color-accent); font-weight: 700; }

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 90px;
}
.sidebar-widget {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
}
.sidebar-widget h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.sidebar-widget p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-links li { margin-bottom: 8px; }
.sidebar-links a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-links a:hover { color: var(--color-accent); }
.sidebar-links i { color: var(--color-accent); font-size: 0.72rem; }

/* ── BLOG – KARTENBILDER ─────────────────────────────────── */
.blog-card-img {
  margin: -28px -28px 18px -28px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  height: 180px;
  background: rgba(70,255,59,0.04);
  border-bottom: 1px solid var(--color-border);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }

/* ── BLOG – ARTIKEL HERO-BILD ────────────────────────────── */
.article-hero-img {
  margin: 28px auto 0;
  max-width: 680px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 0 40px rgba(70,255,59,0.1);
}
.article-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── BLOG – HOMEPAGE VORSCHAU ────────────────────────────── */
.blog-preview-section {
  background: var(--color-bg);
  padding: 56px 0 64px;
}
.blog-preview-eyebrow {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 32px;
}
@media (max-width: 1024px) {
  .blog-preview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-preview-grid { grid-template-columns: 1fr; }
}
.blog-preview-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  text-decoration: none;
  overflow: hidden;
}
.blog-preview-card:hover {
  border-color: var(--color-border-strong);
  box-shadow: 0 0 20px var(--glow-xs);
  transform: translateY(-3px);
}
/* Bild-Slot in den Homepage-Vorschaukarten */
.blog-preview-img {
  margin: -22px -20px 14px -20px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  height: 150px;
  background: rgba(70,255,59,0.04);
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.blog-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.blog-preview-card:hover .blog-preview-img img { transform: scale(1.04); }
.blog-preview-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(70,255,59,0.08);
  border: 1px solid rgba(70,255,59,0.2);
  color: var(--color-accent);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 20px;
  width: fit-content;
}
.blog-preview-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  flex-grow: 1;
}
.blog-preview-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-top: 4px;
}
.blog-preview-more {
  text-align: center;
}
.blog-preview-more a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  border: 1px solid var(--color-border-strong);
  padding: 10px 28px;
  border-radius: var(--radius-md);
  display: inline-block;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.blog-preview-more a:hover {
  background: var(--color-accent);
  color: #04110a;
  box-shadow: 0 0 18px var(--glow-md);
}
