:root {
  --primary: #0a2f63;
  --primary-dark: #08264f;
  --accent: #63b300;
  --accent-dark: #3f8700;
  --gold: #f0b400;
  --gold-soft: #ffd655;
  --text: #17324d;
  --muted: #5f7388;
  --white: #ffffff;
  --bg-soft: #f5f8fb;
  --border: #d9e3ea;
  --shadow-soft: 0 16px 40px rgba(10, 47, 99, 0.10);
  --shadow-medium: 0 18px 48px rgba(10, 47, 99, 0.12);
  --shadow-strong: 0 28px 80px rgba(10, 47, 99, 0.18);
  --container: 1220px;
  --header-height: 84px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 235, 120, 0.28), transparent 20%),
    linear-gradient(90deg, #6fa03e 0%, #dce8cf 34%, #f4f4ef 50%, #d8e5c7 66%, #5f8f34 100%);
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -50px;
  background: var(--primary-dark);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(28, 53, 84, 0.14);
  background: rgba(255,255,255,0.78);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--shadow-soft);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--primary-dark);
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  font-weight: 800;
  border-radius: 14px;
  padding: 16px 24px;
  transition: 0.2s ease;
  font-size: 1rem;
}

.btn-primary {
  color: white;
  background: linear-gradient(180deg, #78c900 0%, var(--accent) 100%);
  box-shadow: 0 16px 32px rgba(99, 179, 0, 0.28);
  border: 1px solid rgba(63, 135, 0, 0.30);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #6bbb00 0%, var(--accent-dark) 100%);
}

.btn-secondary {
  color: #1e2d3d;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(30, 45, 61, 0.14);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  background: white;
}

.hero {
  padding: 36px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding-top: 24px;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.hero-logo {
  width: min(100%, 720px);
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 16px 42px rgba(8, 38, 79, 0.16));
}

.hero-title {
  margin: 0 auto;
  max-width: 1180px;
  font-size: clamp(2.25rem, 4.9vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 900;
  color: var(--primary-dark);
  text-shadow: 0 4px 24px rgba(255,255,255,0.45);
}

.hero-title .green {
  color: var(--accent-dark);
}

.hero-subtitle {
  margin: 14px auto 0;
  max-width: 980px;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1.25;
  color: #223242;
  text-shadow: 0 4px 20px rgba(255,255,255,0.45);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero-legal {
  padding: 42px 0 26px;
}

.hero-legal-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.overline {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.hero-legal h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: var(--primary-dark);
  text-shadow: 0 4px 24px rgba(255,255,255,0.45);
}

.hero-legal p {
  margin: 14px auto 0;
  max-width: 820px;
  font-size: 1.08rem;
  color: #223242;
  text-shadow: 0 4px 20px rgba(255,255,255,0.45);
}

.section {
  padding: 90px 0;
  scroll-margin-top: 110px;
}

.section-soft {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
}

.section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 40px;
}

.section-header h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--primary-dark);
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.card,
.feature-box,
.legal-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(217, 227, 234, 0.95);
  box-shadow: var(--shadow-soft);
}

.card {
  border-radius: var(--radius);
  padding: 30px;
}

.card-number {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: white;
  background: linear-gradient(180deg, #78c900 0%, var(--accent-dark) 100%);
  box-shadow: 0 12px 24px rgba(99, 179, 0, 0.25);
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  color: var(--primary-dark);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.feature-box {
  border-radius: 24px;
  padding: 30px;
}

.feature-box h3 {
  margin-top: 0;
  color: var(--primary-dark);
  font-size: 1.26rem;
}

.check-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "âœ”";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(217, 227, 234, 0.95);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  font-weight: 700;
  color: var(--primary-dark);
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-dark);
  font-size: 1.2rem;
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "â€“";
}

.faq-content {
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(135deg, rgba(8, 38, 79, 0.94), rgba(10, 47, 99, 0.88));
  color: white;
}

.contact-section .section-header h2,
.contact-section .section-header p,
.contact-section .section-header .overline,
.contact-section .overline {
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}

.contact-card,
.form-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.16);
  backdrop-filter: blur(10px);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 14px;
}

.contact-list li {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.96);
}

input,
textarea,
select {
  width: 100%;
  font: inherit;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.98);
  color: #1f2d3a;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,0.84);
  font-size: 0.92rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.form-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-status.success {
  display: block;
  background: rgba(22, 101, 52, 0.18);
  border: 1px solid rgba(134, 239, 172, 0.28);
  color: #dcfce7;
}

.form-status.error {
  display: block;
  background: rgba(185, 28, 28, 0.18);
  border: 1px solid rgba(252, 165, 165, 0.28);
  color: #fee2e2;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(8px);
}

.legal-card h2 {
  margin: 34px 0 10px;
  font-size: 1.25rem;
  color: var(--primary-dark);
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card h3 {
  margin: 22px 0 8px;
  font-size: 1rem;
  color: var(--primary-dark);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card p {
  margin: 0 0 18px;
}

.legal-card ul {
  margin: 0 0 18px 20px;
  padding: 0;
}

.legal-card strong {
  color: var(--primary-dark);
}

.legal-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.legal-card a:hover {
  text-decoration: underline;
}

code {
  background: #eef4fb;
  color: var(--primary-dark);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.95em;
}

footer {
  background: #061c3a;
  color: #a8bad1;
  padding: 36px 20px 110px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
}

.footer-brand {
  color: white;
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.footer-col h4 {
  margin: 0 0 12px;
  color: white;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #a8bad1;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.92rem;
}

.sticky-cta {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(180deg, #78c900 0%, var(--accent-dark) 100%);
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 -12px 28px rgba(0,0,0,0.12);
}

.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;
}

@media (max-width: 1100px) {
  .grid-3,
  .grid-2,
  .contact-grid,
  .footer-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    width: min(100%, 620px);
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.95rem;
    padding: 7px 9px;
  }

  .nav-links .btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
}

@media (max-width: 860px) {
  .container {
    padding: 0 18px;
  }

  header {
    backdrop-filter: blur(10px);
  }

  .nav {
    min-height: 78px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .logo-link {
    justify-content: flex-start;
  }

  .logo-small {
    height: 56px;
    max-width: 190px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 4px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(217, 227, 234, 0.95);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .nav-links .btn {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 26px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 14px;
  }

  .logo-small {
    height: 48px;
    max-width: 160px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-logo {
    width: min(100%, 420px);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .form-card .btn,
  .sticky-cta {
    width: 100%;
  }

  .legal-card {
    padding: 26px 20px;
  }

  .sticky-cta {
    padding: 12px 10px;
    font-size: 0.94rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: stretch;
}

.calculator-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.84) 100%);
  border: 1px solid rgba(255,255,255,0.62);
  box-shadow: var(--shadow-medium);
  border-radius: 26px;
  padding: 32px;
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-field label {
  color: var(--primary-dark);
  font-weight: 700;
}

.calc-field input,
.calc-field select {
  border: 1px solid rgba(15, 43, 84, 0.12);
  background: rgba(255,255,255,0.96);
  color: #1f2d3a;
}

.calc-field input:focus,
.calc-field select:focus {
  outline: none;
  border-color: rgba(99, 179, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(99, 179, 0, 0.10);
}

.calculator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.calculator-result-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.result-highlight {
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(8, 38, 79, 0.96), rgba(10, 47, 99, 0.88));
  color: white;
  box-shadow: var(--shadow-medium);
}

.result-label {
  font-size: 0.92rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.result-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.result-box {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border: 1px solid rgba(15, 43, 84, 0.10);
}

.result-box span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.result-box strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.calculator-note {
  margin-top: 20px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .calculator-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .calculator-card {
    padding: 26px 20px;
  }

  .calculator-actions {
    flex-direction: column;
  }

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

.trust-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0;
  text-align: center;
}

.trust-bar strong {
  display: block;
  font-size: 28px;
  color: #0b2f63;
}

.trust-bar span {
  font-size: 14px;
  color: #6b7c93;
}

.reference-featured {
  background: linear-gradient(135deg, #0b2f63, #0f4d8a);
  color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  text-align: center;
}

.reference-featured .stars {
  color: #f0b400;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.reference-featured p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.reference-featured .meta {
  margin-top: 20px;
  opacity: 0.88;
}

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

.reference-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #e6edf3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.reference-card .stars {
  color: #f0b400;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.reference-card p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.reference-card .meta {
  margin-top: 15px;
  font-weight: 600;
  color: #0b2f63;
}

@media (max-width: 900px) {
  .reference-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    flex-direction: column;
  }
}


/* =========================
   REFERENZEN FORM FIX
   ========================= */

#referenzen form {
  color: #0b2f63;
}

/* Labels */
#referenzen label {
  color: #0b2f63;
  font-weight: 600;
}

/* Inputs + Textarea */
#referenzen input,
#referenzen textarea {
  background: #ffffff;
  color: #0b2f63;
  border: 1px solid #d9e3ea;
}

/* Placeholder */
#referenzen input::placeholder,
#referenzen textarea::placeholder {
  color: #7a8ca3;
}

/* Checkbox Text */
#referenzen .consent span {
  color: #0b2f63;
}

/* Fokus schÃ¶ner */
#referenzen input:focus,
#referenzen textarea:focus {
  border-color: #2bb24c;
  outline: none;
  box-shadow: 0 0 0 2px rgba(43, 178, 76, 0.15);
}

/*
#referenzen form {
  background: #f8fbff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e3edf5;
}
*/

/*
#referenzen select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid #d9e3ea;
  background: #ffffff;
  color: #0b2f63;
  font: inherit;
}

#referenzen select:focus {
  border-color: #2bb24c;
  outline: none;
  box-shadow: 0 0 0 2px rgba(43, 178, 76, 0.15);
}
*/


/*

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-cta {
  white-space: nowrap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

*/

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  margin: 0;
  padding: 0;
}

.site-header {
  line-height: 0;
}

.site-header .nav-shell,
.site-header .top-kpi-bar {
  line-height: normal;
}

.top-kpi-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  min-height: 22px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(90deg, #0a2f63 0%, #0e8a4a 100%);
  letter-spacing: 0.01em;
}

.top-kpi-bar strong {
  font-weight: 800;
}

.nav-shell {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(10, 47, 99, 0.08);
  box-shadow: 0 10px 30px rgba(10, 47, 99, 0.05);
}

.nav-premium {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 22px;
}

.logo-small {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.header-meta {
  display: flex;
  align-items: center;
}

.countdown-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(10,47,99,0.96), rgba(8,38,79,0.96));
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 47, 99, 0.18);
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.08);
}

.countdown-text {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
  line-height: 1;
}

#countdownTimer {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

@media (max-width: 1180px) {
  .countdown-pill {
    align-items: center;
  }
}

@media (max-width: 860px) {
  .header-meta {
    display: none;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #1c3554;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 8px 10px;
  border-radius: 10px;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(10, 47, 99, 0.05);
}

.header-cta {
  margin-left: 6px;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 0.98rem;
  box-shadow: 0 14px 28px rgba(99, 179, 0, 0.22);
}


@media (max-width: 1180px) {
  .nav-premium {
    grid-template-columns: auto 1fr auto;
  }

  .header-meta {
    order: 3;
    grid-column: 1 / -1;
    margin-top: -4px;
  }

  .countdown-pill {
    margin-left: 0;
  }
}

@media (max-width: 860px) {
  .top-kpi-bar {
    gap: 12px;
    font-size: 11px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .nav-premium {
    display: flex;
    min-height: 78px;
    gap: 14px;
  }

  .header-meta {
    display: none;
  }

  .logo-small {
    height: 42px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(10,47,99,0.08);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(10,47,99,0.12);
    backdrop-filter: blur(14px);
  }

  .nav-links.open a {
    padding: 12px 14px;
  }

  .header-cta {
    margin-left: 0;
  }

  .wa-icon {
    width: 100%;
    height: 50px;
  }
}


/* =========================
   PREMIUM HEADER CLEAN
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
}

.top-kpi-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  min-height: 22px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(90deg, #0a2f63 0%, #0e8a4a 100%);
  letter-spacing: 0.01em;
  opacity: 0.95;
}

.top-kpi-bar > div {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.top-kpi-bar strong {
  font-weight: 800;
}

.nav-shell {
  position: relative;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(10, 47, 99, 0.06);
  box-shadow: 0 8px 20px rgba(10, 47, 99, 0.04);
}

.nav-premium {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 22px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.logo-small {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.10));
}

.header-meta {
  display: flex;
  align-items: center;
}

.countdown-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(10,47,99,0.85);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(10,47,99,0.15);
  white-space: nowrap;
}

.countdown-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.88;
}

#countdownTimer {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #1c3554;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 8px 10px;
  border-radius: 10px;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(10, 47, 99, 0.03);
}

.header-cta {
  margin-left: 6px;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 0.98rem;
  box-shadow: 0 8px 18px rgba(99, 179, 0, 0.18);
}

.wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent !important;
  border: none;
  box-shadow: none;
  width: auto;
  height: auto;
  line-height: 0;
}

.wa-icon img {
  display: block;
  width: 40px;
  height: auto;
  max-width: none;
}

.wa-icon:hover {
  background: transparent !important;
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  .nav-premium {
    grid-template-columns: auto 1fr auto;
  }

  .header-meta {
    order: 3;
    grid-column: 1 / -1;
    margin-top: -4px;
  }

  .countdown-pill {
    margin-left: 0;
  }
}

@media (max-width: 860px) {
  .top-kpi-bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 14px;
    padding: 6px 10px;
  }

  .top-kpi-bar > div {
    flex: 0 0 auto;
  }

  .nav-premium {
    display: flex;
    min-height: 78px;
    gap: 14px;
  }

  .header-meta {
    display: none;
  }

  .logo-small {
    height: 42px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(10,47,99,0.08);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(10,47,99,0.12);
    backdrop-filter: blur(14px);
    z-index: 1205;
  }

  .nav-links.open a {
    padding: 12px 14px;
    width: 100%;
    text-align: center;
  }

  .header-cta {
    margin-left: 0;
  }

  .wa-icon {
    width: 100%;
    height: 50px;
  }
}

@media (max-width: 640px) {
  .logo-small {
    height: 40px;
  }
}




/* =========================
   CONTACT SECTION PREMIUM OVERRIDES
   ========================= */

.contact-section {
  background: linear-gradient(135deg, rgba(8, 38, 79, 0.96), rgba(10, 47, 99, 0.90)) !important;
}

.contact-section .contact-card,
.contact-section .form-card {
  border-radius: 28px !important;
  backdrop-filter: blur(12px) !important;
}

.contact-section .contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.06) 100%) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow: 0 20px 48px rgba(0,0,0,0.18) !important;
}

.contact-section .form-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.07) 100%) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow: 0 22px 52px rgba(0,0,0,0.20) !important;
  padding: 34px !important;
}

.contact-section .contact-list {
  gap: 12px !important;
}

.contact-section .contact-list li {
  padding: 15px 16px !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  color: rgba(255,255,255,0.94) !important;
}

.contact-section .contact-actions {
  gap: 14px !important;
}

.contact-section .form-card form {
  gap: 16px !important;
}

.contact-section .form-card .field-group {
  gap: 9px !important;
}

.contact-section .form-card label {
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  color: rgba(255,255,255,0.98) !important;
  letter-spacing: 0.01em !important;
}

.contact-section .form-card input,
.contact-section .form-card textarea,
.contact-section .form-card select {
  width: 100% !important;
  font: inherit !important;
  padding: 16px 18px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  background: rgba(255,255,255,0.97) !important;
  color: #17324d !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.50) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease !important;
}

.contact-section .form-card input::placeholder,
.contact-section .form-card textarea::placeholder {
  color: #7b8ea2 !important;
}

.contact-section .form-card textarea {
  min-height: 150px !important;
  resize: vertical !important;
  line-height: 1.65 !important;
}

.contact-section .form-card input:hover,
.contact-section .form-card textarea:hover,
.contact-section .form-card select:hover {
  border-color: rgba(99, 179, 0, 0.28) !important;
}

.contact-section .form-card input:focus,
.contact-section .form-card textarea:focus,
.contact-section .form-card select:focus {
  outline: none !important;
  background: #ffffff !important;
  border-color: rgba(99, 179, 0, 0.62) !important;
  box-shadow: 0 0 0 4px rgba(99, 179, 0, 0.10), 0 10px 24px rgba(10, 47, 99, 0.08) !important;
  transform: translateY(-1px) !important;
}

.contact-section .form-card select {
  appearance: none !important;
  background-image:
    linear-gradient(45deg, transparent 50%, #0a2f63 50%),
    linear-gradient(135deg, #0a2f63 50%, transparent 50%) !important;
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px) !important;
  background-size: 6px 6px, 6px 6px !important;
  background-repeat: no-repeat !important;
  padding-right: 42px !important;
}

.contact-section .form-card .consent {
  margin-top: 4px !important;
  gap: 12px !important;
  color: rgba(255,255,255,0.88) !important;
  font-size: 0.93rem !important;
  line-height: 1.6 !important;
}

.contact-section .form-card .consent input {
  width: 18px !important;
  height: 18px !important;
  margin-top: 3px !important;
  box-shadow: none !important;
  transform: none !important;
  accent-color: #63b300 !important;
}

.contact-section .form-card .consent a {
  color: #d8f3b2 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.contact-section .form-card .consent a:hover {
  text-decoration: underline !important;
}

.contact-section .form-card .btn-primary {
  width: 100% !important;
  min-height: 56px !important;
  border-radius: 16px !important;
  font-size: 1rem !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 16px 30px rgba(99, 179, 0, 0.24) !important;
}

.contact-section .form-card .form-note {
  margin-top: 4px !important;
  font-size: 0.92rem !important;
  color: rgba(255,255,255,0.78) !important;
  line-height: 1.6 !important;
}

.contact-section .form-card .form-status {
  margin-top: 4px !important;
}

.contact-section .wa-contact {
  width: 60px !important;
  height: auto !important;
  max-width: none !important;
  display: block !important;
}

@media (max-width: 640px) {
  .contact-section .form-card {
    padding: 24px 20px !important;
    border-radius: 22px !important;
  }

  .contact-section .form-card input,
  .contact-section .form-card textarea,
  .contact-section .form-card select {
    padding: 15px 16px !important;
    border-radius: 12px !important;
  }

  .contact-section .form-card .btn-primary {
    min-height: 52px !important;
  }
}

/* =========================
   HERO + CONTACT PREMIUM
   ========================= */

.hero-inner-premium {
  max-width: 1040px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(10,47,99,0.08);
  box-shadow: 0 10px 24px rgba(10,47,99,0.05);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.hero-inner-premium .hero-subtitle {
  max-width: 860px;
  margin-top: 18px;
  line-height: 1.4;
}

.hero-trust-premium {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-trust-premium span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(10,47,99,0.07);
  box-shadow: 0 10px 22px rgba(10,47,99,0.04);
  font-size: 0.95rem;
  font-weight: 600;
  color: #1d334a;
}

.contact-card-premium {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.08) 100%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
}

.contact-card-topline {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d9f3b4;
}

.contact-intro {
  margin: 0 0 22px 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  font-size: 1rem;
}

.contact-list-premium {
  gap: 12px;
}

.contact-list-premium li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.94);
}

.contact-list-premium a {
  color: #ffffff;
  text-decoration: none;
}

.contact-list-premium a:hover {
  text-decoration: underline;
}

.contact-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(217,243,180,0.92);
}

.contact-list-premium strong {
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 700;
  color: #ffffff;
}

.wa-contact {
  width: 40px;
  height: auto;
  max-width: none;
  display: block;
}

.contact-actions .wa-icon {
  padding: 8px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
}

.contact-actions .wa-icon img {
  width: 40px;
  height: auto;
  max-width: none;
}

.contact-actions .wa-icon:hover {
  background: rgba(255,255,255,0.14);
}

@media (max-width: 860px) {
  .hero-trust-premium {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-trust-premium span {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-badge {
    font-size: 0.75rem;
    padding: 0 12px;
  }

  .contact-card-premium {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .wa-contact {
    width: 34px;
    height: auto;
  }
}



/* =========================
   REFERENCES PREMIUM
   ========================= */

.references-section {
  position: relative;
}

.references-header {
  margin-bottom: 46px;
}

.trust-bar-premium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 42px 0;
}

.trust-bar-premium .trust-item {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(217, 227, 234, 0.92);
  border-radius: 22px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(10,47,99,0.07);
  backdrop-filter: blur(8px);
}

.trust-bar-premium strong {
  display: block;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
}

.trust-bar-premium span {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

.reference-featured-premium {
  position: relative;
  background:
    linear-gradient(135deg, rgba(8,38,79,0.96), rgba(10,47,99,0.88));
  color: #ffffff;
  padding: 48px 42px;
  border-radius: 26px;
  margin-bottom: 34px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(10,47,99,0.18);
  overflow: hidden;
}

.reference-featured-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(255,255,255,0.18), transparent 34%);
  pointer-events: none;
}

.reference-featured-topline {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(217,243,180,0.96);
}

.reference-featured-premium .stars {
  position: relative;
  z-index: 1;
  color: #f0b400;
  letter-spacing: 4px;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.reference-featured-premium p {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  line-height: 1.9;
  margin: 0;
  max-width: 860px;
  margin-inline: auto;
}

.reference-featured-premium .meta {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  opacity: 0.9;
  font-weight: 600;
}

.reference-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.reference-card-premium {
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(217, 227, 234, 0.92);
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: 0 16px 36px rgba(10,47,99,0.07);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.reference-card-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(10,47,99,0.10);
  border-color: rgba(99,179,0,0.18);
}

.reference-card-premium .stars {
  color: #f0b400;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.reference-card-premium p {
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  color: #334a62;
}

.reference-card-premium .meta {
  margin-top: 16px;
  font-weight: 700;
  color: var(--primary-dark);
}

.reference-cta-premium {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(217, 227, 234, 0.92);
  border-radius: 28px;
  padding: 34px 30px 30px;
  box-shadow: 0 18px 42px rgba(10,47,99,0.08);
  backdrop-filter: blur(10px);
}

.reference-form-topline {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.reference-cta-premium h3 {
  margin: 0 0 10px 0;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.15;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.reference-cta-premium form {
  margin-top: 22px;
}

#referenzen .btn-primary {
  min-height: 54px;
  padding-inline: 22px;
}

@media (max-width: 980px) {
  .trust-bar-premium,
  .reference-grid-premium {
    grid-template-columns: 1fr;
  }

  .reference-featured-premium {
    padding: 38px 24px;
  }

  .reference-featured-premium p {
    font-size: 1.08rem;
  }
}

@media (max-width: 640px) {
  .reference-cta-premium {
    padding: 24px 18px 20px;
    border-radius: 22px;
  }

  .reference-card-premium {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .trust-bar-premium .trust-item {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .reference-featured-premium {
    border-radius: 22px;
  }
}

/* =========================
   SERVICES + PROCESS PREMIUM
   ========================= */

.services-grid-premium {
  gap: 24px;
}

.services-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(217,227,234,0.9);
  border-radius: 22px;
  padding: 30px 26px;
  box-shadow: 0 16px 36px rgba(10,47,99,0.06);
  transition: 0.25s ease;
}

.services-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(10,47,99,0.1);
}

.services-card h3 {
  margin-top: 12px;
  font-size: 1.2rem;
}

.services-card p {
  color: #4a6178;
  line-height: 1.7;
}

/* Ablauf */

.process-section {
  position: relative;
}

.process-grid {
  gap: 24px;
}

.process-card {
  position: relative;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(217,227,234,0.9);
  border-radius: 22px;
  padding: 36px 28px 28px;
  box-shadow: 0 16px 36px rgba(10,47,99,0.06);
  transition: 0.25s ease;
}

.process-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(10,47,99,0.1);
}

.card-step {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #63b300, #7ed321);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(99,179,0,0.3);
}

.process-card h3 {
  margin-top: 12px;
  font-size: 1.2rem;
}

.process-card p {
  color: #4a6178;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .services-grid-premium,
  .process-grid {
    grid-template-columns: 1fr;
  }
}


.top-kpi-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 10px 18px;
  background: linear-gradient(90deg, #0c2340 0%, #114f2d 100%);
  color: #f5f8f1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.kpi-item {
  white-space: nowrap;
  opacity: 0.96;
}

.kpi-item strong {
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 920px) {
  .top-kpi-bar {
    gap: 10px 16px;
    padding: 10px 14px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .top-kpi-bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 10px 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .top-kpi-bar::-webkit-scrollbar {
    display: none;
  }
}

.top-kpi-bar {
  position: sticky;
  top: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  padding: 10px 18px;

  background: linear-gradient(90deg, #0b1f3a 0%, #0f3d2b 100%);
  backdrop-filter: blur(6px);

  color: #eaf2ec;
  font-size: 14px;
  letter-spacing: 0.03em;

  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.kpi-item {
  white-space: nowrap;
  opacity: 0.9;
}

.kpi-item strong {
  color: #ffffff;
  font-weight: 800;
}

.kpi-item strong {
  transition: all 0.3s ease;
}

.kpi-live {
  background: #63b300;
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 700;
}

.kpi-live {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.kpi-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  margin: 0;
  padding: 0;
  display: block;
}

.site-header > * {
  margin-top: 0;
}

.top-kpi-bar,
.nav-shell {
  margin: 0;
}

.countdown-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(10, 47, 99, 0.88);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(10, 47, 99, 0.16);
  white-space: nowrap;
}

.countdown-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.84;
  text-transform: uppercase;
}

#countdownTimer {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.countdown-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;

  padding: 8px 14px;
  border-radius: 12px;

  background: rgba(10, 47, 99, 0.9);
  color: #fff;

  box-shadow: 0 10px 25px rgba(10,47,99,0.18);
}

.countdown-text {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

#countdownTimer {
  font-size: 14px;
  font-weight: 800;
}

.fund-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.fund-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(217, 227, 234, 0.95);
  box-shadow: 0 16px 40px rgba(10, 47, 99, 0.10);
  border-radius: 26px;
  padding: 30px;
}

.fund-card-highlight {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,251,244,0.96) 100%);
}

.fund-topline {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f8a00;
}

.fund-rate span {
  display: block;
  color: #5f7388;
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.fund-rate strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.02;
  color: #08264f;
  letter-spacing: -0.04em;
}

.fund-volume {
  margin-top: 24px;
}

.fund-volume-main strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #0a2f63;
  letter-spacing: -0.03em;
}

.fund-volume-main span {
  display: block;
  margin-top: 6px;
  color: #5f7388;
  font-size: 0.98rem;
}

.fund-progress {
  height: 16px;
  margin-top: 18px;
  background: rgba(10, 47, 99, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.fund-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #78c900 0%, #3f8700 100%);
  box-shadow: 0 8px 18px rgba(99, 179, 0, 0.26);
}

.fund-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: #5f7388;
  font-size: 0.92rem;
}

.fund-next-step {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(8,38,79,0.96), rgba(10,47,99,0.88));
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(10, 47, 99, 0.18);
}

.fund-next-label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.76;
  margin-bottom: 8px;
}

.fund-next-step strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.fund-next-step span:last-child {
  display: block;
  margin-top: 8px;
  font-size: 0.96rem;
  opacity: 0.94;
}

.fund-list {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.fund-list li {
  position: relative;
  padding-left: 28px;
  color: #5f7388;
  line-height: 1.7;
}

.fund-list li::before {
  content: "âœ”";
  position: absolute;
  left: 0;
  top: 0;
  color: #4f8a00;
  font-weight: 800;
}

.fund-steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.fund-step {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(217, 227, 234, 0.95);
  text-align: center;
  box-shadow: 0 10px 24px rgba(10, 47, 99, 0.06);
}

.fund-step strong {
  display: block;
  color: #08264f;
  font-size: 1rem;
  line-height: 1.2;
}

.fund-step span {
  display: block;
  margin-top: 6px;
  color: #4f8a00;
  font-weight: 800;
  font-size: 0.94rem;
}

@media (max-width: 1100px) {
  .fund-grid {
    grid-template-columns: 1fr;
  }

  .fund-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .fund-card {
    padding: 24px 20px;
  }

  .fund-progress-meta {
    flex-direction: column;
  }

  .fund-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


.header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rate-pill {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(10,47,99,0.08);
  box-shadow: 0 8px 18px rgba(10,47,99,0.08);
  white-space: nowrap;
}

.rate-pill-top {
  font-size: 14px;
  font-weight: 800;
  color: #0a2f63;
  line-height: 1.1;
}

.rate-pill-bottom {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f7388;
  line-height: 1.1;
}

@media (max-width: 1180px) {
  .header-meta {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .header-meta {
    display: none;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* ===== PREMIUM WHATSAPP BUTTON ===== */

.wa-premium {
  position: fixed;
  bottom: 26px;
  right: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  text-decoration: none;
}

/* Bubble Text */
.wa-bubble {
  background: #ffffff;
  color: #0a2f63;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.25s ease;
}

.wa-bubble {
  opacity: 0;
  transform: translateX(12px);
  transition: all 0.35s ease;
}

.wa-bubble.show {
  opacity: 1;
  transform: translateX(0);
}

/* Button */
.wa-button {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent; /* ðŸ”¥ kein grÃ¼ner Kreis mehr */
  box-shadow: none; /* optional cleaner Look */
  transition: transform 0.2s ease;
}

.wa-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Hover Effekt */
.wa-premium:hover .wa-button {
  transform: scale(1.08);
}

.wa-premium:hover .wa-bubble {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse Effekt */
.wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: waPulse 2.2s infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .wa-bubble {
    display: none;
  }

  .wa-button {
    width: 54px;
    height: 54px;
  }
}

.fund-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.fund-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(217, 227, 234, 0.95);
  box-shadow: 0 16px 40px rgba(10, 47, 99, 0.10);
  border-radius: 26px;
  padding: 30px;
}

.fund-card-highlight {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,251,244,0.96) 100%);
}

.fund-topline {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f8a00;
}

.fund-card-copy {
  margin: 0 0 18px;
  color: #5f7388;
  line-height: 1.7;
}

.fund-rate span {
  display: block;
  color: #5f7388;
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.fund-rate strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.02;
  color: #08264f;
  letter-spacing: -0.04em;
}

.fund-volume {
  margin-top: 24px;
}

.fund-volume-main strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #0a2f63;
  letter-spacing: -0.03em;
}

.fund-volume-main span {
  display: block;
  margin-top: 6px;
  color: #5f7388;
  font-size: 0.98rem;
}

.fund-progress {
  height: 16px;
  margin-top: 18px;
  background: rgba(10, 47, 99, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.fund-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #78c900 0%, #3f8700 100%);
  box-shadow: 0 8px 18px rgba(99, 179, 0, 0.26);
}

.fund-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: #5f7388;
  font-size: 0.92rem;
}

.fund-next-step {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(8,38,79,0.96), rgba(10,47,99,0.88));
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(10, 47, 99, 0.18);
}

.fund-next-label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.76;
  margin-bottom: 8px;
}

.fund-next-step strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.fund-next-step span:last-child {
  display: block;
  margin-top: 8px;
  font-size: 0.96rem;
  opacity: 0.94;
}

.fund-step-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fund-step {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(217, 227, 234, 0.95);
  text-align: center;
  box-shadow: 0 10px 24px rgba(10, 47, 99, 0.06);
}

.fund-step strong {
  display: block;
  color: #08264f;
  font-size: 1rem;
  line-height: 1.2;
}

.fund-step span {
  display: block;
  margin-top: 6px;
  color: #4f8a00;
  font-weight: 800;
  font-size: 0.94rem;
}

.fund-step-link {
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.fund-step-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(10, 47, 99, 0.10);
  border-color: rgba(99, 179, 0, 0.45);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,251,244,0.98) 100%);
}

.fund-step-link strong,
.fund-step-link span {
  text-decoration: none;
}

@media (max-width: 1100px) {
  .fund-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .fund-card {
    padding: 24px 20px;
  }

  .fund-progress-meta {
    flex-direction: column;
  }

  .fund-step-links {
    grid-template-columns: 1fr;
  }
}


.fund-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.fund-box {
  display: block;
  padding: 20px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-decoration: none;
  background: #fff;
  transition: 0.2s;
}

.fund-box strong {
  display: block;
  font-size: 18px;
  color: #0a2f63;
}

.fund-box span {
  display: block;
  margin-top: 5px;
  color: #5f7388;
}

.fund-box:hover {
  transform: translateY(-3px);
  border-color: #63b300;
}

.rate-pill {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  text-decoration: none !important;
  color: inherit !important;

  flex: 0 0 auto !important;
}

.rate-pill * {
  text-decoration: none !important;
}

.header-meta {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex: 0 0 auto !important;
}

.rate-pill {
  display: block !important;
  flex: 0 0 auto !important;
  min-width: auto !important;
}

.rate-pill-link {
  display: inline-flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 2px !important;
  min-height: 42px !important;
  padding: 8px 14px !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,0.82) !important;
  border: 1px solid rgba(10,47,99,0.08) !important;
  box-shadow: 0 8px 18px rgba(10,47,99,0.08) !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  color: #0a2f63 !important;
  line-height: 1 !important;
}

.rate-pill-link:hover,
.rate-pill-link:focus,
.rate-pill-link:active,
.rate-pill-link:visited {
  text-decoration: none !important;
  color: #0a2f63 !important;
}

.rate-pill-link .rate-pill-top {
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #0a2f63 !important;
  line-height: 1.1 !important;
}

.rate-pill-link .rate-pill-bottom {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #5f7388 !important;
  line-height: 1.1 !important;
}

.countdown-pill {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: auto !important;
}

.nav-links {
  margin-left: auto !important;
}

.rate-pill {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
}


/* ?? Fund Urgency Booster */
.fund-urgency {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0, 150, 90, 0.08);
  border: 1px solid rgba(0, 150, 90, 0.15);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fund-urgency strong {
  font-size: 14px;
  color: #00965a;
  font-weight: 800;
}

.fund-urgency span {
  font-size: 11px;
  color: #4f6b5f;
}


/* ðŸ”¥ Fund Urgency Booster */
.fund-urgency {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0, 150, 90, 0.08);
  border: 1px solid rgba(0, 150, 90, 0.15);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fund-urgency strong {
  font-size: 14px;
  color: #00965a;
  font-weight: 800;
}

.fund-urgency span {
  font-size: 11px;
  color: #4f6b5f;
}

/* =========================
   ENERGYFONDS LIVE STAGE
   ========================= */
.ef-live-stage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 260px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ef-live-stage__label {
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 4px;
}

.ef-live-stage__main {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}

.ef-live-stage__current {
  opacity: 0.72;
  font-size: 14px;
}

.ef-live-stage__arrow {
  opacity: 0.5;
  font-size: 13px;
}

.ef-live-stage__next {
  font-size: 15px;
  color: #d7b56d;
}

.ef-live-stage__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 1.35;
  opacity: 0.88;
  margin-bottom: 7px;
}

.ef-live-stage__bar {
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.10);
}

.ef-live-stage__bar span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8abf52 0%, #d7b56d 100%);
  transition: width 0.8s ease;
}

/* Optional für Header-Zeile */
.live-header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 768px) {
  .ef-live-stage {
    min-width: 100%;
  }

  .ef-live-stage__meta {
    flex-direction: column;
    gap: 4px;
  }
}




.mobile-live-toggle{
  position:fixed;
  top:14px;
  right:74px; /* sitzt zwischen Logo & Menü */
  z-index:3002;
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:none;
  border-radius:16px;
  background:rgba(255,255,255,.18);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:0 12px 34px rgba(10,47,99,.18);
  cursor:pointer;
  font-size:11px;
  font-weight:800;
  color:#123a74;
}