/* ===== ABOUT: KINETIC INTRO (SCOPED) ===== */

.fc-about-services {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #e8e8e6;
  color: #050505;
  z-index: 10;

  margin: 0;
  padding: 0;
  max-width: 100%;
}

.fc-about-services,
.fc-about-services * {
  box-sizing: border-box;
}

/* Canvas */
#fc-kinetic-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

/* Content */
.fc-about-content {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6vw;
  pointer-events: none;
}

/* Label */
.fc-about-label {
  position: absolute;
  top: 8vh;
  left: 6vw;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  border-bottom: 2px solid #000;
  padding-bottom: 12px;
  font-weight: 600;
  color: #050505;
  pointer-events: auto;
}

/* Headline */
.fc-about-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 11vw;
  line-height: 0.82;
  text-transform: uppercase;
  color: #050505;
  mix-blend-mode: exclusion;
  margin: 0;
  margin-top: -2vh;
  letter-spacing: -0.03em;
  pointer-events: auto;
  max-width: 100%;
}

/* Bigger card + moved upward */
.fc-about-desc-block {
  position: absolute;
  right: 6vw;
  bottom: 15vh;              /* higher than before to overlap more */
  width: min(720px, 90vw);   /* bigger */
  pointer-events: auto;
  transform: translateY(-14px);
}

.fc-about-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.12rem;
  line-height: 1.55;
  color: #1a1a1a;

  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  padding: 30px 34px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;

  overflow: hidden;
}

.fc-about-text strong {
  font-weight: 700;
  color: #0b0b0b;
}

/* Responsive */
@media (max-width: 768px) {
  .fc-about-headline {
    font-size: 16vw;
    margin-top: 0;
  }

  .fc-about-desc-block {
    left: 6vw;
    right: auto;
    bottom: 8vh;
    width: min(92vw, 720px);
    transform: none;
  }

  .fc-about-text {
    font-size: 1.02rem;
    padding: 22px 22px;
  }
}
