/* ── Massive Fresh Footer ── */
.site-footer {
  position: relative;
  background: #111; /* removed shine */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 120px 20px 80px 20px;
  overflow: hidden;
  margin-top: 120px;
}

/* The giant watermark text */
.footer-watermark {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14.5vw;
  font-weight: 700;
  color: rgba(249, 77, 53, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -2px;
  width: 100%;
  text-align: center;
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.6fr 1fr 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 100px;
}

/* ── Premium Full-Width Banner ── */
.footer-premium-banner {
  background: linear-gradient(160deg, rgba(30,30,30,0.6) 0%, rgba(10,10,10,0.9) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.1), 0 20px 40px rgba(0,0,0,0.5);
  border-radius: 24px;
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.footer-premium-banner::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(249, 77, 53, 0.05), transparent 60%);
  pointer-events: none;
}

.fpb-left {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.fpb-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(249, 77, 53, 0.2), transparent);
  border: 1px solid rgba(249, 77, 53, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.fpb-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.fpb-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.fpb-right {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
}

.fpb-form {
  position: relative;
  display: flex;
  width: 100%;
}

.fpb-form input {
  width: 100%;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 16px 140px 16px 24px;
  border-radius: 100px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.fpb-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(230, 42, 16, 0.2);
}

.fpb-form button {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  padding: 0 24px;
  border: none;
  background: linear-gradient(180deg, #F94D35 0%, #E62A10 100%);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fpb-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 42, 16, 0.4);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.footer-socials a.social-ig:hover {
  background: #E1306C;
  border-color: #E1306C;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(225, 48, 108, 0.3);
}
.footer-socials a.social-x:hover {
  background: #000;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}
.footer-socials a.social-yt:hover {
  background: #FF0000;
  border-color: #FF0000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}
.footer-socials a.social-tg:hover {
  background: #0088cc;
  border-color: #0088cc;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 136, 204, 0.3);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Increased gap to stretch the height */
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
  display: inline-block;
  width: fit-content;
}

.footer-links a:hover {
  color: var(--primary);
}

/* ── Contact Column ── */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.c-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.c-value {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.c-value:hover {
  color: var(--primary);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fb-left {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.fb-right {
  display: flex;
  gap: 30px;
}

.fb-right a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.fb-right a:hover {
  color: #fff;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-premium-banner {
    padding: 30px 40px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 20px 40px 20px !important;
    margin-top: 60px !important;
  }
  .footer-giant-logo-container {
    display: none !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-premium-banner {
    flex-direction: column;
    padding: 30px 20px !important;
    gap: 24px;
    text-align: center;
    align-items: center;
  }
  .fpb-left {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .fpb-icon {
    margin: 0 auto;
  }
  .fpb-right {
    min-width: auto !important;
    width: 100% !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .fb-left {
    align-items: center;
    text-align: center;
  }
  .fb-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .footer-platform-blocks {
    align-items: flex-start;
  }
  .f-platform-block {
    width: 100%;
    max-width: 320px;
    margin: 0;
  }
}





/* --- Giant Footer Hover Logo --- */
.footer-giant-logo-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 80px auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* "User Flow" wordmark — each letter is a grey vector-outline SVG in its own
   wrapper. The row fills 100% of the container (proportional inline widths).
   Default is a dim outline; hovering a letter brightens + lifts it, its
   neighbours brighten a touch, and a red shine fades in right behind it. */
.uf-wordmark {
  display: flex;
  align-items: flex-end;
  width: 100%;
  flex-wrap: nowrap;
}
.uf-letter {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
}
.uf-letter-gap { margin-left: 3.574%; } /* space between "User" and "Flow" */

/* Red shine — sits behind whichever letter is hovered */
.uf-letter::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 190%;
  height: 165%;
  background: radial-gradient(ellipse at center, rgba(230, 42, 16, 0.22) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}
.uf-letter:hover::before { opacity: 1; }

.ufp {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.4;
  transition: opacity 0.35s ease, transform 0.35s ease;
  cursor: pointer;
}
.ufp path {
  fill: none;
  fill-rule: evenodd;        /* keep letter holes (e, o) open when filled */
  stroke: #b8b8b8;           /* grey outline by default */
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  transition: stroke 0.3s ease, fill 0.3s ease;
}

/* Hovered letter: fills solid primary red, full brightness + lift. */
.uf-letter:hover .ufp { opacity: 1; transform: translateY(-8px); }
.uf-letter:hover .ufp path { fill: var(--primary); stroke: var(--primary); }

/* The letter on each side picks up a little red (~40%). */
.uf-letter:hover + .uf-letter .ufp,
.uf-letter:has(+ .uf-letter:hover) .ufp { opacity: 0.5; }
.uf-letter:hover + .uf-letter .ufp path,
.uf-letter:has(+ .uf-letter:hover) .ufp path { stroke: var(--primary); }

@media (prefers-reduced-motion: reduce) {
  .ufp { transition: opacity 0.35s ease; }
  .uf-letter:hover .ufp { transform: none; }
}

/* --- Made in Germany Badge --- */
.fb-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-made-in {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 18px 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 15px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  margin-top: 4px;
}

.footer-made-in::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #000000 0%, #000000 33.3%, #FF0000 33.3%, #FF0000 66.6%, #FFCC00 66.6%, #FFCC00 100%);
  opacity: 0.8;
  transition: all 0.4s ease;
}

.footer-made-in:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 8px 25px rgba(0,0,0,0.5);
  color: #fff;
}

.footer-made-in:hover::before {
  opacity: 1;
  height: 4px;
}

.de-svg {
  filter: grayscale(20%) brightness(0.9);
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.5);
  border-radius: 50%;
  filter: grayscale(10%) brightness(0.9);
}

.footer-made-in:hover svg {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.05);
}

.footer-desc strong {
  color: #fff;
  font-weight: 600;
}

/* --- Footer Platform Blocks --- */
.footer-platform-blocks {
  gap: 12px;
}

.f-platform-block {
  display: flex !important;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  color: inherit;
  width: fit-content;
}

.f-platform-block:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px) !important;
  color: #fff !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.f-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 8px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.f-platform-block:hover .f-icon {
  background: var(--primary, #F94D35);
  color: #fff;
}

.f-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.f-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.f-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}
