/* ============================
   FCH FOOTER – TOP SECTION
============================= */

.fch-footer {
  background: var(--bg-2);
  padding-top: clamp(4rem, 6vw, 8rem);
}

/* Glow Section */
.footer-hero {
  text-align: left;
  padding-left: clamp(3.1rem, 11vw, 15rem);
  padding-right: clamp(2rem, 6vw, 5rem);
  margin-bottom: clamp(4rem, 6vw, 6rem);
  position: relative;
}

.footer-hero::before {
  content: "";
  position: absolute;
  left: -10%;
  top: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle at center,
    rgba(184, 204, 100, 0.20) 0%,
    rgba(184, 204, 100, 0.10) 40%,
    rgba(184, 204, 100, 0.04) 70%,
    rgba(184, 204, 100, 0) 100%
  );
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.footer-hero h2 {
  color: var(--ink-1);
  font-size: var(--fs-h1);
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.footer-hero p {
  color: var(--ink-2);
  font-size: var(--fs-lead);
  max-width: 700px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.footer-cta-group {
  display: none; /* NORMAL: Flex */
  
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.footer-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: .9rem 2.0rem;
  border-radius: 999px;
  font-size: var(--fs-body);
  font-weight: 500;
  text-decoration: none;
  transition: .25s ease;
}

/* Primary (Brand) */
.footer-btn.primary {
  background: var(--brand);
  color: #111;
}

.footer-btn.primary:hover {
  opacity: .85;
  transform: translateY(-2px);
}


/* Small Button */
.footer-btn.small {
  margin-top: 1rem;
  margin-top: 30px;
  padding: .7rem 1.4rem;
  font-size: .9rem;
  background: var(--brand);
  color: #111;
  width: 150px;
  align-self: flex-start;
}

.footer-btn.small:hover {
  opacity: .85;
}


/* ============================
   GLASS FOOTER CARD
============================= */

.footer-glass {
  width: clamp(88%, 94%, 96%);
  margin-inline: auto;
  margin-bottom: clamp(2rem, 3vw, 4rem);
  padding: clamp(2rem, 4vw, 3rem);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 26px;

  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  row-gap: 50px;
}

.footer-col h3,
.footer-col h4 {
  color: var(--ink-1);
  margin-bottom: .6rem;
  font-weight: 600;
}

.footer-col p,
.footer-col a {
  color: var(--ink-2);
  line-height: 1.55;
  font-size: calc(var(--fs-body) - 0.05rem);
  opacity: .85;
  text-decoration: none;
}

.footer-col a,
.footer-col h4 {
  display: block;
  margin-bottom: 0.45rem;
}

.footer-col h4 {
  margin-top: 1rem;
}

.footer-col a:hover {
  color: var(--brand);
}

/* Icons */
.footer-icon {
  font-size: 1.2rem;
  margin-right: .4rem;
}

/* Copyright */
.footer-copyright {
  text-align: center !important;
  margin-top: -30px;
  margin-bottom: -30px;
  color: var(--ink-2);
  opacity: .55;
  font-size: .7rem;
}

.footer-col.nav h4:not(:first-child),
.footer-col.service h4:not(:first-child) {
  margin-top: 2rem;
}


@media (max-width: 600px) {



  .footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

  .footer-glass {
    grid-template-columns: 1fr 1fr; /* immer 2 nebeneinander */
    gap: 1.2rem;
    row-gap: 2.2rem;
    padding: 1.6rem;
    align-items: start;
  }

  .footer-col h3,
  .footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }

  .footer-col p,
  .footer-col a {
    font-size: 0.85rem;
    line-height: 1.45;
  }

  .footer-col h4 {
    margin-top: 0.8rem;
  }

  .footer-col.contact {
    margin-top: 10px;
  }
  .footer-col.nav h4:not(:first-child),
  .footer-col.service h4:not(:first-child) {
    margin-top: 1.2rem;
  }

  .footer-hero {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
    margin-bottom: 3rem;
  }

  .footer-copyright {
    font-size: 0.65rem;
    margin-top: 1.5rem;
  }
}