.values-wrapper {
  text-align: center;
  margin-top: 40px;
}

.values-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.value-pill {
  background: #243e73;
  color: #ffffff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s ease;
  cursor: default;
}

.value-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.value-pill.light {
  background: #1ea5d9;
}

.value-pill.dark {
  background: #1d2f55;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .values-row {
    flex-direction: column;
    align-items: center;
  }

  .value-pill {
    width: 90%;
    text-align: center;
  }
}

.custom-footer-strip {
  background: linear-gradient(90deg, #2f4a7f, #243e73);
  color: #ffffff;
  text-align: center;
  padding: 18px 10px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.custom-footer-strip span {
  margin: 0 8px;
}

.custom-footer-strip .divider {
  opacity: 0.6;
}

/* Remove default footer padding if needed */
.zs-footer {
  padding: 0 !important;
}
.custom-footer-strip a {
  color: white;
  text-decoration: none;
}
.custom-footer-strip a:hover {
  text-decoration: underline;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .custom-footer-strip {
    font-size: 13px;
    line-height: 1.8;
  }

  .custom-footer-strip span {
    display: inline-block;
  }
}


/* ===== PREMIUM HEADER STYLE ===== */

.zs-header {
  background: #ffffff;
  padding: 14px 50px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: 0.3s ease;
}

/* Logo size */
.zs-header img {
  max-height: 32px !important;
}
/* Menu links */
.zs-menu a {
  color: #243e73 !important;
  font-weight: 500;
  font-size: 15px;
  margin: 0 18px;
  transition: 0.3s ease;
}

/* Hover effect */
.zs-menu a:hover {
  color: #1ea5d9 !important;
}

/* Active link */
.zs-menu .active a {
  color: #1ea5d9 !important;
}

/* CTA Button */
.zs-header .zs-button,
.zs-header .zs-btn {
  background: #243e73 !important;
  color: #ffffff !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  font-weight: 600;
  border: none !important;
  transition: 0.3s ease;
}

/* Button Hover */
.zs-header .zs-button:hover,
.zs-header .zs-btn:hover {
  background: #1ea5d9 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Remove extra grey strip if exists */
.zs-header-topbar {
  display: none !important;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .zs-header {
    padding: 12px 20px;
  }
}

/* ===== FINANZEN HERO FULL WIDTH ===== */

.finanzen-hero {
  background: linear-gradient(135deg, #1f3c72, #223c72);
  color: #ffffff;
  padding: 120px 60px;
  width: 100%;
  margin: 0;
}

.finanzen-hero .hero-container {
  max-width: 1100px;
  margin: 0 auto;
}

.finanzen-hero .badge {
  display: inline-block;
  background: #1ea5d9;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 30px;
}

.finanzen-hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 30px;
  color: #ffffff;
}

.finanzen-hero .hero-subtitle h3 {
  font-size: 20px;
  margin-bottom: 10px;
 color: #ffffff;
}

.finanzen-hero .hero-subtitle p {
  color: #d0d9ea;
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 750px;
}

.finanzen-hero .feature-list {
  margin-bottom: 50px;
}

.finanzen-hero .feature {
  background: rgba(255,255,255,0.08);
  padding: 16px 22px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.finanzen-hero .stats {
  display: flex;
  justify-content: space-between;
  margin: 50px 0 30px;
  flex-wrap: wrap;
}

.finanzen-hero .stats div {
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.finanzen-hero .stats h2 {
  color: #ffb100;
  font-size: 30px;
  margin-bottom: 5px;
}

.finanzen-hero .highlight {
  background: #ffb100;
  color: #000;
  text-align: center;
  padding: 14px;
  border-radius: 6px;
  font-weight: 600;
  max-width: 850px;
  margin: 0 auto;
}

/* Remove white gap from Zoho section */
.finanzen-hero-section {
  padding: 0 !important;
  margin: 0 !important;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .finanzen-hero {
    padding: 80px 20px;
  }

  .finanzen-hero h1 {
    font-size: 36px;
  }

  .finanzen-hero .stats {
    flex-direction: column;
    gap: 25px;
  }
}