/* =====================================================================
   GLOBALIST FOOTER — schlank, namespace `gf-`
   ===================================================================== */

.gf-footer{
  position: relative;
  overflow: hidden;
  background: #02100c;
  color: #fff;
  font-family: 'Inter', sans-serif;
  padding: clamp(72px, 8vw, 100px) 24px 0;
  border-top: 1px solid rgba(0,237,179,.14);
  isolation: isolate;
}

/* Subtle mint glow at top edge (only — no grid, no wordmark) */
.gf-footer::before{
  content:'';
  position: absolute;
  top: -300px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(0,237,179,.10), transparent 60%);
  pointer-events: none; z-index: 0;
}

.gf-inner{
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

/* —————————————————————————————————————————————————————————————
   GRID — 4 columns, brand wider
   ————————————————————————————————————————————————————————————— */
.gf-grid{
  display: grid;
  grid-template-columns: 1.4fr 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
}
@media (max-width: 1080px){
  .gf-grid{ grid-template-columns: 1fr 1fr; gap: 48px 40px; }
  .gf-brand{ grid-column: 1 / -1; }
  .gf-col-leistungen{ grid-column: 1 / -1; }
}
@media (max-width: 540px){
  .gf-grid{ grid-template-columns: 1fr; gap: 36px; }
}

/* Leistungen sub-groups inline on desktop */
.gf-subgroup-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.gf-subgroup-row .gf-subgroup{ margin-top: 0; }
@media (max-width: 1080px){
  .gf-subgroup-row{ grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
@media (max-width: 720px){
  .gf-subgroup-row{ grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px){
  .gf-subgroup-row{ grid-template-columns: 1fr; gap: 20px; }
}

/* —————————————————————————————————————————————————————————————
   BRAND BLOCK
   ————————————————————————————————————————————————————————————— */
.gf-brand{
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 380px;
}
.gf-logo{
  display: inline-block;
  max-width: 180px;
  text-decoration: none;
  transition: filter .35s ease;
}
.gf-logo:hover{ filter: drop-shadow(0 0 12px rgba(0,237,179,.4)); }
.gf-logo img{
  width: 100%; height: auto; display: block;
  border-radius: 0 !important;
}
.gf-tagline{
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.6);
  margin: 0;
}

/* CTA — single inline pill */
.gf-cta-btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: linear-gradient(180deg, #00ffc7 0%, var(--primary) 100%);
  color: #021410 !important;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px; font-weight: 700;
  text-decoration: none !important;
  width: fit-content;
  box-shadow:
    0 10px 28px -10px rgba(0,237,179,.5),
    inset 0 1px 0 rgba(255,255,255,.32);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
}
.gf-cta-btn:hover{
  transform: translateY(-2px);
  box-shadow:
    0 14px 34px -8px rgba(0,237,179,.65),
    inset 0 1px 0 rgba(255,255,255,.42);
}
.gf-cta-btn svg{ width: 14px; height: 14px; }

/* Mail / address line */
.gf-mail{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.82);
  text-decoration: none !important;
  transition: color .25s ease;
  width: fit-content;
}
.gf-mail:hover{ color: var(--primary); }
.gf-mail svg{ width: 15px; height: 15px; color: var(--primary); }

/* Social row */
.gf-socials{
  display: flex; gap: 8px;
  margin-top: 4px;
}
.gf-socials a{
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: transform .35s cubic-bezier(.16,1,.3,1),
              border-color .25s ease,
              color .25s ease;
}
.gf-socials a:hover{
  transform: translateY(-2px);
  border-color: rgba(0,237,179,.4);
  color: var(--primary);
}
.gf-socials svg{ width: 16px; height: 16px; }

/* —————————————————————————————————————————————————————————————
   LINK COLUMNS
   ————————————————————————————————————————————————————————————— */
.gf-col-title{
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 26px;
  padding-top: 22px;
  font-family: 'Inter', sans-serif !important;
  border-top: 1px solid rgba(255,255,255,.08);
}
.gf-col-title::before{
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 40px; height: 1px;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(0,237,179,.55);
}
.gf-col ul{
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 11px;
}
.gf-col li{ margin: 0; }
.gf-col li a{
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  text-decoration: none !important;
  transition: color .2s ease;
  line-height: 1.4;
  display: inline-flex; align-items: center; gap: 6px;
}
.gf-col li a:hover{
  color: var(--primary);
}
.gf-link-special::after{
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--primary);
  margin-left: 4px;
}

/* Sub-groups inside one column (for Leistungen) */
.gf-subgroup{ margin-top: 22px; }
.gf-subgroup:first-child{ margin-top: 0; }
.gf-subgroup-title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 13px;
  font-family: 'Inter', sans-serif !important;
}
.gf-subgroup-title::before{
  content: '';
  display: inline-block;
  width: 16px; height: 1px;
  background: rgba(0,237,179,.55);
  flex-shrink: 0;
}

/* Highlighted link inside Unternehmen — Globalist OS pill */
.gf-link-os{
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 12px !important;
  margin-left: -12px;
  border-radius: 10px;
  background: rgba(0,237,179,.06) !important;
  border: 1px solid rgba(0,237,179,.22) !important;
  color: var(--primary) !important;
  font-weight: 600 !important;
  transition: background .25s ease, border-color .25s ease, transform .35s cubic-bezier(.16,1,.3,1);
  position: relative;
}
.gf-link-os:hover{
  background: rgba(0,237,179,.12) !important;
  border-color: rgba(0,237,179,.4) !important;
  transform: translateX(2px);
  color: var(--primary) !important;
}
.gf-link-os svg{
  width: 13px; height: 13px;
  color: var(--primary);
  flex-shrink: 0;
}
.gf-link-os .badge{
  display: inline-block;
  padding: 2px 7px;
  font-size: 9px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  background: rgba(0,237,179,.16);
  border-radius: 999px;
  color: var(--primary);
  line-height: 1;
  margin-left: 2px;
}

/* —————————————————————————————————————————————————————————————
   BOTTOM BAR
   ————————————————————————————————————————————————————————————— */
.gf-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 12px;
  color: rgba(255,255,255,.42);
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 14px;
}
.gf-bottom-left{
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.gf-copy{
  font-weight: 500;
  color: rgba(255,255,255,.5);
}
.gf-sep{ color: rgba(255,255,255,.18); }
.gf-bottom-legal{
  display: flex; gap: 22px;
  flex-wrap: wrap;
}
.gf-bottom-legal a{
  color: rgba(255,255,255,.5);
  text-decoration: none !important;
  font-weight: 500;
  transition: color .2s ease;
  font-size: 12.5px;
}
.gf-bottom-legal a:hover{ color: var(--primary); }

/* Language switcher */
.gf-lang-switch{
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase;
}
.gf-lang-switch a{
  color: rgba(255,255,255,.42);
  text-decoration: none !important;
  transition: color .2s ease;
}
.gf-lang-switch a:hover{ color: var(--primary); }
.gf-lang-active{
  color: #fff;
  cursor: default;
}

/* Override any premium-layer auto-card-styling */
.gf-footer [class*="card-item"],
.gf-footer [class*="_card"]{
  background: inherit !important;
  border: inherit !important;
  border-radius: inherit !important;
  backdrop-filter: none !important;
}
